diff --git a/Dockerfile b/Dockerfile index 084567a..7cbd86e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,9 +6,9 @@ COPY front . RUN npm run build FROM python:3-slim -WORKDIR /app +WORKDIR /srv COPY requirements.txt . RUN pip install --no-cache-dir --upgrade -r requirements.txt -COPY ./app ./app +COPY ./back ./back COPY --from=builder /src/dist ./front/dist -CMD uvicorn app.main:app --host 0.0.0.0 --port 80 +CMD uvicorn back.main:app --host 0.0.0.0 --port 80 diff --git a/README.md b/README.md index f862287..174d80c 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Backend: ```sh pip install -r requirements.txt -uvicorn app.main:app --reload +uvicorn back.main:app --reload ``` ## Deploy instructions diff --git a/app/__init__.py b/back/__init__.py similarity index 100% rename from app/__init__.py rename to back/__init__.py diff --git a/app/main.py b/back/main.py similarity index 100% rename from app/main.py rename to back/main.py diff --git a/app/utils.py b/back/utils.py similarity index 100% rename from app/utils.py rename to back/utils.py