mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
6 lines
148 B
Docker
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 / |