backoffice #4

Merged
v4l3n71n merged 3 commits from backoffice into master 2023-10-17 19:40:14 +00:00
Showing only changes of commit f78745ef7b - Show all commits

View File

@ -1,19 +1,11 @@
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.11-slim AS backend-builder
FROM python:3.11.6-alpine3.18
WORKDIR /app
COPY requierements.txt /app/
RUN pip install --upgrade pip
RUN pip install -r requierements.txt
# Create the final image
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.11-slim
WORKDIR /app
COPY --from=backend-builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
COPY app /app/app
RUN pip install --upgrade pip && pip install -r requierements.txt
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]