mirror of
https://github.com/sablierapp/sablier.git
synced 2026-01-03 19:44:59 +01:00
6 lines
153 B
Docker
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 / |