Skip to content

Commit

Permalink
install 7z in Dockerfile and call apt-get clean
Browse files Browse the repository at this point in the history
  • Loading branch information
nam20485 committed May 3, 2024
1 parent 0539d5b commit 6fd33da
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,15 @@ RUN apt-get update && \
tar \
pkg-config \
mono-complete \
linux-libc-dev \
linux-libc-dev \
p7zip-full \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# test 7z install
RUN 7z -h

# install vcpkg
ENV VCPKG_ROOT=/root/src/github/microsoft/vcpkg
RUN git clone https://github.com/Microsoft/vcpkg.git ${VCPKG_ROOT}
Expand Down

0 comments on commit 6fd33da

Please sign in to comment.