mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-08 14:10:05 +00:00
20 lines
273 B
Text
20 lines
273 B
Text
|
FROM golang:alpine
|
||
|
|
||
|
RUN set -ex \
|
||
|
&& apk update \
|
||
|
&& apk add \
|
||
|
git \
|
||
|
make \
|
||
|
nodejs \
|
||
|
npm
|
||
|
|
||
|
RUN set -ex \
|
||
|
&& npm install --global \
|
||
|
coffeescript \
|
||
|
less
|
||
|
|
||
|
RUN set -ex \
|
||
|
&& cd /go \
|
||
|
&& go get -u \
|
||
|
github.com/shuLhan/go-bindata/...
|