15 lines
305 B
Docker
15 lines
305 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY backend/requirements.txt /app/requirements.txt
|
|
RUN pip install --no-cache-dir -r /app/requirements.txt
|
|
|
|
COPY backend/app /app/app
|
|
COPY frontend /app/frontend
|
|
COPY .env /app/.env
|
|
|
|
EXPOSE 8088
|
|
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8088"]
|