Fixed the issue where the frontend was not copied to Docker.

This commit is contained in:
2025-11-29 03:26:21 +09:00
parent 832dbc11d5
commit c0e45dc674
2 changed files with 3 additions and 4 deletions
+1
View File
@@ -13,6 +13,7 @@ COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY app ./app
COPY frontend ./frontend
EXPOSE 8080
+2 -4
View File
@@ -1,13 +1,11 @@
version: "3.9"
services:
plex-playlist-sync:
build: .
command: uvicorn app.main:app --host 0.0.0.0 --port 8080 --reload
ports:
- "8080:8080"
- "8888:8080"
volumes:
- ./:/app
- path_to_your_playlist:/app/playlist
environment:
- PYTHONUNBUFFERED=1
- PYTHONDONTWRITEBYTECODE=1