wiki/Dockerfile
Peter Stuifzand 944acf79ab
Some checks failed
the build failed
Add wiki user
2019-02-25 18:45:26 +01:00

16 lines
402 B
Docker

# build stage
FROM golang:1.10.2-alpine3.7 AS build-env
RUN apk --no-cache add git
RUN go get p83.nl/go/wiki/...
# final stage
FROM alpine
RUN apk --no-cache add ca-certificates git
RUN adduser --uid 1005 wiki
EXPOSE 80
COPY --from=build-env /go/bin/wiki /app/
RUN ["mkdir", "/app/templates"]
COPY --from=build-env /go/src/p83.nl/go/wiki/templates /app/templates
WORKDIR /app
ENTRYPOINT ["/app/wiki"]