aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2019-06-20 21:00:59 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net>2019-06-20 21:00:59 -0700
commita04fe1aa7ec53418c25a43938273a439981e7412 (patch)
tree26ed184f19c1d7eb7298b36d7c5aeb3b6d4cbc19 /Dockerfile
parentd01a2dd65194a588010701f7abf4be0a7db312b8 (diff)
Update Docker image to Alpine Linux 3.10.0
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index dbf299d..e05bff6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,11 +1,11 @@
-FROM golang:1.12-alpine3.9 as build
+FROM golang:1.12-alpine3.10 as build
ENV GO111MODULE=on
WORKDIR /go/src/app
RUN apk add --no-cache --update build-base git
COPY . .
RUN make linux-__MINIFLUX_ARCH__ VERSION=__MINIFLUX_VERSION__
-FROM __BASEIMAGE_ARCH__/alpine:3.9
+FROM __BASEIMAGE_ARCH__/alpine:3.10.0
EXPOSE 8080
ENV LISTEN_ADDR 0.0.0.0:8080
RUN apk --no-cache add ca-certificates tzdata