Skip to content

Commit

Permalink
Update alpine to 3.14
Browse files Browse the repository at this point in the history
  • Loading branch information
aledbf committed Jul 1, 2021
1 parent 3af0d30 commit ce50d2a
Show file tree
Hide file tree
Showing 27 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion chart/templates/proxy-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
enableServiceLinks: false
initContainers:
- name: "sysctl"
image: "alpine:3.13"
image: "alpine:3.14"
securityContext:
privileged: true
command:
Expand Down
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ components:
requests:
cpu: 100m
memory: 128Mi
alpineImage: alpine:3.13
alpineImage: alpine:3.14
selfBuildBaseImage: ""
ports:
rpc:
Expand Down
2 changes: 1 addition & 1 deletion components/blobserve/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion components/content-service/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion components/dashboard/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13 as compress
FROM alpine:3.14 as compress

RUN apk add brotli gzip

Expand Down
2 changes: 1 addition & 1 deletion components/ee/agent-smith/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the Gitpod Enterprise Source Code License,
# See License.enterprise.txt in the project root folder.

FROM alpine:3.13
FROM alpine:3.14

RUN apk add --no-cache git bash ca-certificates
COPY components-ee-agent-smith--app/agent-smith /app/
Expand Down
2 changes: 1 addition & 1 deletion components/ee/ws-scheduler/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the Gitpod Enterprise Source Code License,
# See License.enterprise.txt in the project root folder.

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion components/image-builder/example-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"baseImageRepository": "eu.gcr.io/gitpod-dev/base-images",
"workspaceImageRepository": "eu.gcr.io/gitpod-dev/workspace-images",
"imageBuildSalt": "001",
"alpineImage": "alpine:3.13",
"alpineImage": "alpine:3.14",
"selfBuildBaseImage": ""
},
"pprof": {
Expand Down
2 changes: 1 addition & 1 deletion components/image-builder/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion components/image-builder/pkg/resolve/resolve_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestDockerRegistryResolver(t *testing.T) {
Err error
}{
{"alpine:latest", "docker.io/library/alpine:latest", nil},
{"alpine:3.13", "docker.io/library/alpine:3.13", nil},
{"alpine:3.14", "docker.io/library/alpine:3.14", nil},
{"gitpod/workspace-full:build-branch-master", "docker.io/gitpod/workspace-full:build-branch-master", nil},
{"gitpod/does-not-exist", "docker.io/gitpod/does-not-exist", fmt.Errorf("does not exist")},
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.13
FROM alpine:3.14

RUN apk add --no-cache --update bash

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM alpine:3.13
FROM alpine:3.14

RUN apk add --no-cache --update bash
2 changes: 1 addition & 1 deletion components/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14
COPY components--all-docker/commit.yaml /
COPY components--all-docker/versions.yaml /
2 changes: 1 addition & 1 deletion components/local-app/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14

WORKDIR /app
COPY components-local-app--app/components-local-app--app-linux/local-app local-app-linux
Expand Down
2 changes: 1 addition & 1 deletion components/proxy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN xcaddy build \
--with github.com/caddyserver/caddy/v2=$PWD/caddy-fork \
--with github.com/gitpod-io/gitpod/proxy/plugins=/plugins

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion components/registry-facade/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion components/service-waiter/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion components/ws-daemon/debug.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:1.16-alpine AS debugger
RUN apk add --no-cache git
RUN go get -u github.com/go-delve/delve/cmd/dlv

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
4 changes: 2 additions & 2 deletions components/ws-daemon/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13 as dl
FROM alpine:3.14 as dl
WORKDIR /dl
RUN apk add --no-cache curl \
&& curl -OL https://github.com/opencontainers/runc/releases/download/v1.0.0-rc95/runc.amd64 \
&& chmod +x runc.amd64

FROM alpine:3.13
FROM alpine:3.14

RUN apk upgrade \
&& rm -rf /var/cache/apk/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache
Expand Down
2 changes: 1 addition & 1 deletion components/ws-manager/debug.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion components/ws-manager/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion components/ws-proxy/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion dev/poolkeeper/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion dev/sweeper/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion install/installer/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN echo "chart_location = \"../helm/gitpod\"" >> installer.auto.tfvars && \
cp installer.auto.tfvars terraform/gcp && \
rm installer.auto.tfvars

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache
Expand Down
2 changes: 1 addition & 1 deletion test/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the GNU Affero General Public License (AGPL).
# See License-AGPL.txt in the project root for license information.

FROM alpine:3.13
FROM alpine:3.14

# Ensure latest packages are present, like security updates.
RUN apk upgrade --no-cache \
Expand Down

0 comments on commit ce50d2a

Please sign in to comment.