Skip to content

Commit

Permalink
chore: upgrade to alpine 3.13 (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
ynohat committed Aug 30, 2021
1 parent a22bb08 commit b19effd
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/api-gateway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG BASE=akamai/base
# BUILDER
#########

FROM golang:alpine3.12 as builder
FROM golang:alpine3.13 as builder

# this will only be used on architectures that upx doesn't use
COPY files/upx-noop /usr/bin/upx
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/appsec.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG BASE=akamai/base
# BUILDER
#########

FROM node:12-alpine3.12 as builder
FROM node:12-alpine3.13 as builder

RUN apk add --no-cache git npm \
# install cli-property from git
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/base.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# BUILD ARGS
#########

ARG BASE=alpine:3.12
ARG BASE=alpine:3.13

#####################
# FINAL
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/cli.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG BASE=akamai/base
# BUILDER
#########

FROM golang:alpine3.12 as builder
FROM golang:alpine3.13 as builder

ARG CLI_REPOSITORY_URL=https://github.com/akamai/cli

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/dns.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG BASE=akamai/base
# BUILDER
#########

FROM golang:alpine3.12 as builder
FROM golang:alpine3.13 as builder

# this will only be used on architectures that upx doesn't use
COPY files/upx-noop /usr/bin/upx
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/edgeworkers.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG BASE=akamai/base
# BUILDER
#########

FROM node:12-alpine3.12 as builder
FROM node:12-alpine3.13 as builder

RUN apk add --no-cache git npm \
# install cli-edgeworkers from git
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/jsonnet.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ARG BASE=akamai/base
# image since it is likely that the user will want to render the
# templates, not just generate them.

FROM golang:alpine3.12 as jsonnet
FROM golang:alpine3.13 as jsonnet

# this will only be used on architectures that upx doesn't use
COPY files/upx-noop /usr/bin/upx
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/property-manager.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG BASE=akamai/base
# BUILDER
#########

FROM node:12-alpine3.12 as builder
FROM node:12-alpine3.13 as builder

RUN apk add --no-cache git npm \
# install cli-property-manager from git
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/property.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG BASE=akamai/base
# BUILDER
#########

FROM node:12-alpine3.12 as builder
FROM node:12-alpine3.13 as builder

RUN apk add --no-cache git npm \
# install cli-property from git
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/purge.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG BASE=akamai/base
# BUILDER
#########

FROM golang:alpine3.12 as builder
FROM golang:alpine3.13 as builder

# this will only be used on architectures that upx doesn't use
COPY files/upx-noop /usr/bin/upx
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/sandbox.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG BASE=akamai/base
# BUILDER
#########

FROM node:12-alpine3.12 as builder
FROM node:12-alpine3.13 as builder

# sandbox originally binds to 127.0.0.1 which doesn't work with Docker's port mapping
# the patch changes the ip to 0.0.0.0
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/terraform-cli.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG BASE=akamai/base
# BUILDER
#########

FROM golang:alpine3.12 as builder
FROM golang:alpine3.13 as builder

# this will only be used on architectures that upx doesn't use
COPY files/upx-noop /usr/bin/upx
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/terraform.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ARG BASE=akamai/base
# BUILDER
#########

FROM alpine:3.12 as builder
FROM alpine:3.13 as builder
ARG TERRAFORM_VERSION=0.13.6
ARG TERRAFORM_SHA256SUM=55f2db00b05675026be9c898bdd3e8230ff0c5c78dd12d743ca38032092abfc9

Expand Down

0 comments on commit b19effd

Please sign in to comment.