From b2184eb5c3e60b81e2bd8c370f46fa34d2b5a81c Mon Sep 17 00:00:00 2001 From: Kseninia Mikhaylova Date: Wed, 17 Jul 2024 11:14:29 +0300 Subject: [PATCH] install curl --- back/Dockerfile | 1 + docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/back/Dockerfile b/back/Dockerfile index d555838..66b967b 100644 --- a/back/Dockerfile +++ b/back/Dockerfile @@ -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 diff --git a/docker-compose.yml b/docker-compose.yml index 385c77e..00c66c7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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