1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-27 15:41:45 +01:00
This commit is contained in:
Amir Raminfar
2019-09-08 15:12:05 -07:00
parent b48a75f30d
commit 38a3167cbd

View File

@@ -1,11 +1,7 @@
FROM golang:1.13-alpine
FROM goreleaser/goreleaser:latest
RUN apk --no-cache add git nodejs-current nodejs-npm make g++ bash bzr curl docker rpm && \
npm i -g npm && \
wget https://github.com/goreleaser/goreleaser/releases/latest/download/goreleaser_Linux_arm64.tar.gz && \
tar -xvzf goreleaser_Linux_arm64.tar.gz -C /usr/local/bin && \
rm *.gz && \
go get -u github.com/gobuffalo/packr/packr
RUN go get -u github.com/gobuffalo/packr/packr
RUN apk --no-cache add nodejs-current nodejs-npm && npm i -g npm
COPY entrypoint.sh /entrypoint.sh