Skip to content

Commit

Permalink
fix(docker): bump alpine / go
Browse files Browse the repository at this point in the history
  • Loading branch information
sentriz committed May 8, 2021
1 parent 4b3adf0 commit 1f941b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,4 +1,4 @@
FROM alpine:3.13.1 AS builder
FROM golang:1.16-alpine AS builder
RUN apk add -U --no-cache \
build-base \
ca-certificates \
Expand All @@ -14,7 +14,7 @@ RUN go mod download
COPY . .
RUN GOOS=linux go build -o gonic cmd/gonic/gonic.go

FROM alpine:3.13.1
FROM alpine:3.13.5
LABEL org.opencontainers.image.source https://github.com/sentriz/gonic
RUN apk add -U --no-cache \
ffmpeg \
Expand Down
2 changes: 0 additions & 2 deletions Dockerfile.debug
@@ -1,5 +1,3 @@
# syntax=docker/dockerfile:experimental

FROM golang:1.16-alpine AS builder
RUN apk add -U --no-cache \
build-base \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Expand Up @@ -14,7 +14,7 @@ RUN --mount=type=cache,target=/go/pkg/mod \
--mount=type=cache,target=/root/.cache/go-build \
GOOS=linux go build -o gonic cmd/gonic/gonic.go

FROM alpine:3.12.3
FROM alpine:3.13.5
RUN apk add -U --no-cache \
ffmpeg \
ca-certificates
Expand Down

0 comments on commit 1f941b2

Please sign in to comment.