Files
sablier/Dockerfile
2020-10-21 12:57:00 +02:00

6 lines
148 B
Docker

FROM golang:1.15.3-alpine AS build
WORKDIR /src
COPY . .
RUN go build -o ondemand-service .
FROM scratch AS bin
COPY --from=build ondemand-service /