Skip to content

Commit

Permalink
Merge pull request #38 from cofyc/keepuptodate
Browse files Browse the repository at this point in the history
Keep packages up to date
  • Loading branch information
k8s-ci-robot committed Jan 15, 2019
2 parents 15811a0 + 986e8d4 commit 4077dc0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion provisioner/deployment/docker/Dockerfile
Expand Up @@ -19,9 +19,14 @@ ADD . .
RUN cd provisioner; \
CGO_ENABLED=0 go build -a -ldflags '-extldflags "-static"' -o local-volume-provisioner ./cmd

# For security, we use kubernetes community maintained debian base image.
# https://github.com/kubernetes/kubernetes/blob/master/build/debian-base/
FROM k8s.gcr.io/debian-base-amd64:0.4.0

RUN clean-install \
# Keep packages up to date and install packages for our needs.
RUN apt-get update \
&& apt-get upgrade -y \
&& clean-install \
util-linux \
e2fsprogs \
bash
Expand Down

0 comments on commit 4077dc0

Please sign in to comment.