Skip to content

Commit

Permalink
fix(dockerimage): make docker image to install newest pkgs for securi…
Browse files Browse the repository at this point in the history
…ty vuls
  • Loading branch information
LiyangW committed Oct 17, 2022
1 parent 13e056d commit 31f1be4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions backwork/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ LABEL maintainer="[email protected]"
# Install database clients
# Apply security patches
# hadolint ignore=DL3018
RUN echo 'http://dl-3.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories \
&& echo 'http://dl-3.alpinelinux.org/alpine/edge/main' >> /etc/apk/repositories \
&& apk add --no-cache \
RUN apk -U upgrade \
&& apk add --upgrade --no-cache \
bash \
curl \
libressl \
Expand All @@ -15,7 +14,6 @@ RUN echo 'http://dl-3.alpinelinux.org/alpine/edge/community' >> /etc/apk/reposit
mysql \
postgresql \
tini \
&& apk add --upgrade --no-cache \
db \
expat \
freetype \
Expand Down

0 comments on commit 31f1be4

Please sign in to comment.