Skip to content

Commit

Permalink
clean up apt files in final image (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkarneges authored Jul 18, 2024
1 parent 0ff0c14 commit 6b3547f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ MAINTAINER Justin Karneges <[email protected]>

RUN \
apt-get update && \
apt-get install -y libqt6core6 libqt6network6 libzmq5
apt-get install -y --no-install-recommends libqt6core6 libqt6network6 libzmq5 && \
apt-get -y autoremove && \
apt-get -y clean && \
rm -rf /var/lib/apt/lists/*

COPY --from=build /build/out/ /

Expand Down

0 comments on commit 6b3547f

Please sign in to comment.