From 38184f4d1326b573b6d4d572afb09aa945585e54 Mon Sep 17 00:00:00 2001 From: kaiyou Date: Sun, 16 Dec 2018 20:49:27 +0100 Subject: [PATCH] Fix the Docker build when installing go-sqlite Go-SQLite requires sqlite library headers and gcc. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index efbb58b..7065707 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM golang:1.11.2-alpine3.8 as build -RUN apk add --update nodejs nodejs-npm make git +RUN apk add --update nodejs nodejs-npm make g++ git sqlite-dev RUN npm install -g less RUN npm install -g less-plugin-clean-css