Update Dockerfile

assets and utils files not found hence removed
This commit is contained in:
allenmylath
2024-10-14 12:00:29 +05:30
committed by GitHub
parent c866b3f2c9
commit c62156a4c3

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"]