Skip to content

Commit

Permalink
fix(build): add alpine packages to Dockerfile (#12)
Browse files Browse the repository at this point in the history
add alpine packages to Dockerfile

Signed-off-by: Akhil Mohan <[email protected]>
  • Loading branch information
akhilerm authored Nov 23, 2020
1 parent f97342c commit 16ee0c1
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ LABEL org.label-schema.build-date=$DBUILD_DATE
LABEL org.label-schema.vcs-url=$DBUILD_REPO_URL
LABEL org.label-schema.url=$DBUILD_SITE_URL

RUN apk add --no-cache \
iproute2 \
bash \
curl \
net-tools \
procps \
ca-certificates

COPY --from=build /go/src/github.com/openebs/dynamic-localpv-provisioner/bin/provisioner-localpv/provisioner-localpv /usr/local/bin/provisioner-localpv

ENTRYPOINT ["/usr/local/bin/provisioner-localpv"]

0 comments on commit 16ee0c1

Please sign in to comment.