ADAPT-Chase's picture
Add files using upload-large-folder tool
1fb7694 verified
Raw
History Blame Contribute Delete
156 Bytes
FROM golang:alpine
WORKDIR /app
RUN go mod init mockoidc_helper
COPY mockoidc_helper.go .
RUN go build -o mockoidc_helper .
CMD ["/app/mockoidc_helper"]