Merge pull request #579 from Allenmylath/patch-16

Update Dockerfile
This commit is contained in:
Aleix Conchillo Flaqué
2024-10-14 08:58:02 -07:00
committed by GitHub

View File

@@ -5,12 +5,11 @@ RUN mkdir /app/assets
RUN mkdir /app/utils
COPY *.py /app/
COPY requirements.txt /app/
copy assets/* /app/assets/
copy utils/* /app/utils/
WORKDIR /app
RUN pip3 install -r requirements.txt
EXPOSE 7860
CMD ["python3", "server.py"]
CMD ["python3", "server.py"]