Skip to content

Commit

Permalink
move 7z utilities install into main layer so its available in the con…
Browse files Browse the repository at this point in the history
…tainer runtime
  • Loading branch information
nam20485 committed May 10, 2024
1 parent 023f764 commit 7a0f0dc
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ RUN apt-get update && \
pkg-config \
mono-complete \
linux-libc-dev \
p7zip-full \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
Expand Down Expand Up @@ -84,6 +83,17 @@ LABEL org.opencontainers.image.source=https://github.com/nam20485/OdbDesign \

EXPOSE 8888

# install dependencies (7z command)
RUN apt-get update && \
apt-get install -y -q --no-install-recommends \
curl \
apt-transport-https \
ca-certificates \
p7zip-full \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN mkdir --parents /OdbDesign/bin
WORKDIR /OdbDesign

Expand Down

0 comments on commit 7a0f0dc

Please sign in to comment.