Skip to content

Commit

Permalink
fixed package update eror dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
githubofkrishnadhas committed Jul 24, 2024
1 parent efad2d2 commit c654b71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit c654b71

Please sign in to comment.