From c654b71d76bc5f0495608b69166689359f0d8e40 Mon Sep 17 00:00:00 2001 From: githubofkrishnadhas Date: Wed, 24 Jul 2024 14:40:16 +0530 Subject: [PATCH] fixed package update eror dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0e13ab3..ebbe914 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,6 @@ WORKDIR /app # copying files COPY . /app/ # package updations and installations -RUN apt-update && pip install --upgrade pip && apt install poetry -y && chmod +x entrypoint.sh +RUN apt-get update && apt-get install poetry -y && pip install --upgrade pip && chmod +x entrypoint.sh # code file to execute when the docker container starts up (`entrypoint.sh`) ENTRYPOINT ["/app/entrypoint.sh"] \ No newline at end of file