python_skeleton/skeleton/Dockerfile
2025-05-28 15:19:27 +03:00

11 lines
249 B
Docker
Executable file

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN pip install .
VOLUME config
CMD [ "python", "/usr/local/bin/__project_codename__.py", "--config", "/config/config.conf" ]