Update Dockerfile

kcoram/uplift
Jan-Lukas Else 2019-12-22 19:31:22 +01:00
parent 1182d9947b
commit 8e975c9d52
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ ADD . /app
WORKDIR /app
RUN go build
FROM alpine:3.10
RUN apk add --no-cache tzdata ca-certificates && update-ca-certificates
FROM alpine:3.11
RUN apk add --no-cache tzdata ca-certificates
COPY --from=build /app/hugo-micropub /bin/
EXPOSE 5555
CMD ["hugo-micropub"]