mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
Added github action build multi arch
This commit is contained in:
6
Dockerfile
Normal file
6
Dockerfile
Normal file
@@ -0,0 +1,6 @@
|
||||
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 /
|
||||
Reference in New Issue
Block a user