mirror of
https://github.com/Paillat-dev/Botator.git
synced 2026-01-02 01:06:19 +00:00
The base image has been updated to python:3.11-bookworm to use the latest version of Python. The environment variable PYTHONDONTWRITEBYTECODE is set to 1 to disable the creation of .pyc files, which can improve performance and reduce disk usage. The TZ environment variable is set to Europe/Paris to configure the container's timezone.
21 lines
731 B
Docker
21 lines
731 B
Docker
# For more information, please refer to https://aka.ms/vscode-docker-python
|
|
FROM python:3.11-bookworm
|
|
# Turns off buffering for easier container logging
|
|
ENV PYTHONUNBUFFERED=1
|
|
# Turns off pyc files
|
|
ENV PYTHONDONTWRITEBYTECODE=1
|
|
|
|
ENV TZ=Europe/Paris
|
|
# Install git
|
|
RUN apt-get update && \
|
|
apt-get install -y git && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
# Install pip requirements
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
RUN git clone https://github.com/Paillat-dev/Botator.git
|
|
WORKDIR /Botator
|
|
# Creates a non-root user with an explicit UID and adds permission to access the /app folder
|
|
RUN adduser -u 5678 --disabled-password --gecos "" appuser && chown -R appuser /Botator
|
|
USER appuser
|
|
CMD ["python", "main.py"] |