feat: initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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"]
|
||||
Reference in New Issue
Block a user