Skip to content

Commit

Permalink
Bump Go version to 1.16 (#202)
Browse files Browse the repository at this point in the history
* bump go version
* Docker: bump go/alpine version
  • Loading branch information
jhillyerd committed May 1, 2021
1 parent 649e374 commit 66dec49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.16
- name: Setup Node.js
uses: actions/setup-node@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,7 +1,7 @@
# Docker build file for Inbucket: https://www.inbucket.org/

# Install build-time dependencies
FROM golang:1.15-alpine3.12 as builder
FROM golang:1.16-alpine3.13 as builder
RUN apk add --no-cache --virtual .build-deps g++ git make npm python3
WORKDIR /build
COPY . .
Expand All @@ -24,7 +24,7 @@ WORKDIR /build/ui
RUN npm run build

# Run in minimal image
FROM alpine:3.12
FROM alpine:3.13
RUN apk --no-cache add tzdata
WORKDIR /opt/inbucket
RUN mkdir bin defaults ui
Expand Down

0 comments on commit 66dec49

Please sign in to comment.