gtbot/Dockerfile

13 lines
214 B
Text
Raw Permalink Normal View History

2026-03-08 01:50:35 +01:00
FROM python:3.13
WORKDIR /usr/local/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py ./
COPY countrycodes.py ./
RUN useradd app
USER app
CMD ["python3.13", "main.py"]