Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(build): update alpine base images to 3.11.5 #1660

Merged
merged 2 commits into from
Apr 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildscripts/apiserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# maya api server's releases.
#

FROM alpine:3.6
FROM alpine:3.11.5

# TODO: The following env variables should be auto detected.
ENV MAYA_API_SERVER_NETWORK="eth0"
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/cspc-operator-debug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This Dockerfile builds a recent cspc-operator using the latest binary from
# cspc-operator releases.
#
FROM alpine:3.6
FROM alpine:3.11.5

RUN apk add --no-cache \
iproute2 \
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/cspc-operator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This Dockerfile builds a recent cspc-operator using the latest binary from
# cspc-operator releases.
#
FROM alpine:3.6
FROM alpine:3.11.5

RUN apk add --no-cache \
iproute2 \
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/cvc-operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.10
FROM alpine:3.11.5

RUN apk add --no-cache \
iproute2 \
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/mayactl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This Dockerfile builds a recent maya container with latest code
#

FROM alpine:3.6
FROM alpine:3.11.5

RUN apk --no-cache add libc6-compat

Expand Down
2 changes: 1 addition & 1 deletion buildscripts/openebs-cluster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# its latest binary
#

FROM alpine:3.6
FROM alpine:3.11.5

# copy the latest binary
COPY openebs-cluster /usr/local/bin/
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/provisioner-localpv/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.6
FROM alpine:3.11.5

RUN apk add --no-cache \
iproute2 \
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/upgrade/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# its latest binary
#

FROM alpine:3.6
FROM alpine:3.11.5

# copy the latest binary
COPY upgrade /usr/local/bin/upgrade
Expand Down