Skip to content

Commit c654b71

Browse files
fixed package update eror dockerfile
1 parent efad2d2 commit c654b71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ WORKDIR /app
77
# copying files
88
COPY . /app/
99
# package updations and installations
10-
RUN apt-update && pip install --upgrade pip && apt install poetry -y && chmod +x entrypoint.sh
10+
RUN apt-get update && apt-get install poetry -y && pip install --upgrade pip && chmod +x entrypoint.sh
1111
# code file to execute when the docker container starts up (`entrypoint.sh`)
1212
ENTRYPOINT ["/app/entrypoint.sh"]

0 commit comments

Comments
 (0)