We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 501cd52 + fa2ac4b commit 1b12593Copy full SHA for 1b12593
2 files changed
.circleci/config.yml
@@ -4,7 +4,7 @@ executors:
4
golang:
5
working_directory: /go/src/ultre.me/smsify
6
docker:
7
- - image: circleci/golang:1.13
+ - image: circleci/golang:1.15
8
environment:
9
GO111MODULE: "on"
10
DOCKER_IMAGE: ultreme/smsify
Dockerfile
@@ -4,7 +4,7 @@ ARG VCS_REF
ARG VERSION
# build
-FROM golang:1.13-alpine as builder
+FROM golang:1.15-alpine as builder
RUN apk add --no-cache git gcc musl-dev make
ENV GO111MODULE=on
WORKDIR /go/src/ultre.me/smsify
@@ -14,7 +14,7 @@ COPY . ./
14
RUN make install
15
16
# minimalist runtime
17
-FROM alpine:3.10
+FROM alpine:3.12
18
LABEL org.label-schema.build-date=$BUILD_DATE \
19
org.label-schema.name="smsify" \
20
org.label-schema.description="" \
0 commit comments