mirror of https://github.com/mitchell/selfpass.git
14 lines
395 B
Docker
14 lines
395 B
Docker
FROM golang:1.11.5 as build
|
|
WORKDIR /go/src/github.com/mitchell/selfpass/services
|
|
COPY . .
|
|
ENV GO111MODULE on
|
|
RUN make build
|
|
|
|
FROM debian:stable-20190506-slim
|
|
COPY --from=build /go/src/github.com/mitchell/selfpass/services/bin/server /usr/bin/server
|
|
RUN groupadd -r selfpass && useradd --no-log-init -r -g selfpass selfpass
|
|
USER selfpass
|
|
WORKDIR /home/selfpass
|
|
ENTRYPOINT ["server"]
|
|
EXPOSE 8080
|