13 lines
214 B
Text
13 lines
214 B
Text
|
|
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"]
|