install curl

This commit is contained in:
Kseninia Mikhaylova 2024-07-17 11:14:29 +03:00
parent cbf4c566b0
commit b2184eb5c3
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ ENV WORKING_DIR=/app
WORKDIR ${WORKING_DIR}
RUN apt-get update
RUN apt-get install curl -y
RUN apt-get install python3-pip -y
RUN apt-get install python3-poetry -y

View File

@ -8,7 +8,7 @@ services:
expose:
- "8000"
healthcheck:
test: curl -f http://localhost:8000/ || exit 1
test: curl -f http://localhost:8000 || exit 1
interval: 5s
timeout: 3s
retries: 20