Files
sablier/Dockerfile
Alexis Couvreur 2ca72df567 Fix build path
2020-10-21 19:56:12 +02:00

6 lines
153 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 /src/ondemand-service /