devops-configs/master-node/Dockerfile
IcyAltair d5446ba359
Some checks failed
CI/CD job / Push Docker image to Docker Hub (push) Has been cancelled
CI/CD job / Pull image to cluster (push) Has been cancelled
fixed Dockerfile
2025-10-28 21:10:06 +03:00

10 lines
No EOL
331 B
Docker

FROM python:3.12-slim
COPY ./docker_requirements.txt /requirements.txt
RUN pip install "cython<3.0.0" wheel
RUN pip install "pyyaml==6.0.2" --no-build-isolation
RUN pip install -r /requirements.txt
COPY . /app
WORKDIR /app
ENTRYPOINT ["python"]
CMD ["src/app.py"]
# ENTRYPOINT ["sh", "src/entrypoint.sh"] # WSGI - gunicorn prod run