Update Dockerfile -> Go 1.13.7, add build-base (as gcc and friends are needed for SQLite)

This commit is contained in:
Neil Alexander 2020-01-29 12:13:17 +00:00
parent 8d9bdda95c
commit 29fa1cf426

View file

@ -1,9 +1,9 @@
FROM docker.io/golang:1.12.5-alpine3.9
FROM docker.io/golang:1.13.7-alpine3.11
RUN mkdir /build
WORKDIR /build
RUN apk --update --no-cache add openssl bash git
RUN apk --update --no-cache add openssl bash git build-base
CMD ["bash", "docker/build.sh"]