Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM golang:alpine as builder
COPY . /go/src/github.com/frodenas/gcs-resource
COPY . /go/gcs-resource
ENV CGO_ENABLED 0
RUN go build -o /assets/in github.com/frodenas/gcs-resource/cmd/in
RUN go build -o /assets/out github.com/frodenas/gcs-resource/cmd/out
RUN go build -o /assets/check github.com/frodenas/gcs-resource/cmd/check
WORKDIR /go/gcs-resource
RUN go build -o /assets/in ./cmd/in
RUN go build -o /assets/out ./cmd/out
RUN go build -o /assets/check ./cmd/check

FROM alpine:edge AS resource
RUN apk add --no-cache bash tzdata ca-certificates unzip zip gzip tar
Expand Down
Loading