duongve's picture
Update Dockerfile
0c334ae verified
raw
history blame
324 Bytes
FROM python:3.9-slim
ENV DEBIAN_FRONTEND noninteractive
WORKDIR /content
ADD . .
RUN pip install --no-cache-dir -r content/requirements.txt
RUN adduser --disabled-password --gecos '' user && \
chown -R user:user /content && \
chmod -R 777 /content
USER user
EXPOSE 7860
CMD ["python", "/content/app.py"]