fixed Dockerfile
This commit is contained in:
parent
27680d9145
commit
d5446ba359
2 changed files with 3 additions and 2 deletions
|
|
@ -1,5 +1,7 @@
|
||||||
FROM python:3.12-slim-bookworm:latest
|
FROM python:3.12-slim
|
||||||
COPY ./docker_requirements.txt /requirements.txt
|
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
|
RUN pip install -r /requirements.txt
|
||||||
COPY . /app
|
COPY . /app
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
|
||||||
|
|
@ -11,5 +11,4 @@ paramiko == 3.4.0
|
||||||
tabulate == 0.9.0
|
tabulate == 0.9.0
|
||||||
psycopg2-binary == 2.9.9
|
psycopg2-binary == 2.9.9
|
||||||
pydantic==2.6.3
|
pydantic==2.6.3
|
||||||
PyYAML == 6.0
|
|
||||||
websockets==12.0
|
websockets==12.0
|
||||||
Loading…
Reference in a new issue