Test-bot / Dockerfile
kgashok's picture
Update Dockerfile
44c3192
raw
history blame contribute delete
371 Bytes
FROM python:3.10
RUN apt update && apt upgrade -y
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
RUN pip install --no-cache-dir --upgrade pip
COPY requirements.txt /requirements.txt
COPY --chown=user . $HOME/app
RUN pip3 install -U pip && pip3 install -U -r requirements.txt
CMD ["python3", "bot.py"]