Project_base / Dockerfile
Shinhati2023's picture
Create Dockerfile
e01c5a8 verified
raw
history blame contribute delete
252 Bytes
FROM python:3.10
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /home/user/app
COPY --chown=user requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY --chown=user . .
CMD ["python", "bot.py"]