Update Dockerfile For Better Caching
This commit is contained in:
@@ -2,10 +2,12 @@ FROM python:3.12-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
COPY requirement.txt .
|
||||
|
||||
RUN pip install -r requirement.txt
|
||||
|
||||
COPY . .
|
||||
|
||||
EXPOSE 1600
|
||||
|
||||
CMD [ "gunicorn", "main:app", "--bind", "0.0.0.0:1600" ]
|
||||
Reference in New Issue
Block a user