CoolFace
Apppublic

robinroy03/github-bot

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile16 linesDownload Raw Back to root
1FROM python:32 3RUN useradd -m -u 1000 user4USER user5ENV HOME=/home/user \6    PATH=/home/user/.local/bin:$PATH7 8COPY --chown=user . $HOME/github_bot9 10WORKDIR $HOME/github_bot11 12RUN mkdir $HOME/.cache13 14RUN pip install --no-cache-dir --upgrade -r requirements.txt15 16CMD ["gunicorn", "-w", "5", "-b", "0.0.0.0:7860","server:app"]