Skip to content

Commit

Permalink
Allow pip3 to install sytem wide packages in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
NeverMendel committed Jan 1, 2024
1 parent 911c8aa commit 86d7956
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 @@ -14,7 +14,7 @@ WORKDIR /usr/app
RUN mkdir -p out

# Install heif-convert
RUN pip3 install .
RUN pip3 install --break-system-packages .

RUN chmod +x entrypoint.sh
ENTRYPOINT ["./entrypoint.sh"]

0 comments on commit 86d7956

Please sign in to comment.