Snippets Collections
FROM golang:alpine as builder

label "maintainer"="amirabbasmehvari@gmail.com"
RUN mkdir /app
WORKDIR /app/
COPY . /app/
RUN go build -o main .

FROM alpine
COPY --from=builder /app/main /app/
WORKDIR /app/
CMD ["./main"]
star

Tue Mar 28 2023 07:52:34 GMT+0000 (Coordinated Universal Time)

#docker #multi-builder

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension