Skip to content

Commit

Permalink
Update deprecated alpine images
Browse files Browse the repository at this point in the history
  • Loading branch information
aledbf authored and MatthewFagan committed Nov 2, 2021
1 parent 22cd3bd commit aae568d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ components:
requests:
cpu: 100m
memory: 128Mi
alpineImage: alpine:3.9
alpineImage: alpine:3.13
selfBuildBaseImage: ""
ports:
rpc:
Expand Down
2 changes: 1 addition & 1 deletion components/ide/theia/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

################ Alpine ####################
# copy nodejs from the official alpine-based image because of https://github.com/TypeFox/gitpod/issues/2579
FROM node:12.14.1-alpine AS node_installer
FROM node:12.22.1-alpine AS node_installer
RUN mkdir -p /theia/node/bin \
/theia/node/include/node/ \
/theia/node/lib/node_modules/npm/ \
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.9",
"alpineImage": "alpine:3.13",
"selfBuildBaseImage": ""
},
"pprof": {
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.9", "docker.io/library/alpine:3.9", nil},
{"alpine:3.13", "docker.io/library/alpine:3.13", 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.8
FROM alpine:3.13

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.8
FROM alpine:3.13

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

0 comments on commit aae568d

Please sign in to comment.