fixed Dockerfile
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

This commit is contained in:
IcyAltair 2025-10-28 21:10:06 +03:00
parent 27680d9145
commit d5446ba359
2 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,7 @@
FROM python:3.12-slim-bookworm:latest
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

View file

@ -11,5 +11,4 @@ paramiko == 3.4.0
tabulate == 0.9.0
psycopg2-binary == 2.9.9
pydantic==2.6.3
PyYAML == 6.0
websockets==12.0