Skip to content

Commit

Permalink
Dockerfile: use go 1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
adtac committed Mar 31, 2020
1 parent f8e6cc7 commit f09a619
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
@@ -1,10 +1,9 @@
# backend build (api server)
FROM golang:1.12-alpine AS api-build
FROM golang:1.14-alpine AS api-build
RUN apk add --no-cache --update bash dep make git curl g++

COPY ./api /go/src/commento/api/
WORKDIR /go/src/commento/api
ENV GO111MODULE=on
RUN make prod -j$(($(nproc) + 1))


Expand Down

0 comments on commit f09a619

Please sign in to comment.