sussybaka / Dockerfile
Zhofang's picture
Update Dockerfile
eae9230 verified
raw
history blame contribute delete
242 Bytes
FROM python:3.9
RUN chmod 777 -R /root
WORKDIR /app
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN apt install nodejs
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]