Notebook_test / Dockerfile
HarishMaths's picture
Upload 5 files
84df929 verified
raw
history blame
292 Bytes
FROM python:3.9-slim
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt || true
CMD ["python", "downloads.py"]