initial import

This commit is contained in:
SourceFellows
2020-08-31 15:23:01 +02:00
commit 57ff8342e1
35 changed files with 1370 additions and 0 deletions

13
registrierung/Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM golang:1 as builder
WORKDIR /go/src/registration
COPY go.* ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 go build -o registration ./cmd
FROM alpine:latest
COPY --from=builder /go/src/registration .
CMD ["./registration"]