CoolFace
Apppublic

next-social/sese_ok

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
Dockerfile20 linesDownload Raw Back to root
1FROM python:3.112 3RUN useradd -m -u 1000 user4 5USER user6 7ENV HOME=/home/user \8	PATH=/home/user/.local/bin:$PATH9 10COPY requirements.txt requirements.txt11RUN --mount=type=cache,target=/root/.cache/pip pip3 install --no-cache-dir -r requirements.txt12 13 14WORKDIR $HOME/app15 16COPY --chown=user . $HOME/app17 18EXPOSE 786019 20CMD ["sh", "-c", "python3 server.py --notebook --listen"]