Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
lhoupert authored Feb 1, 2024
1 parent 2b8358f commit 29bb9fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ GOARCH=amd64 \
CGO_ENABLED=0

ARG VERSION=v3.2.0
COPY ./ .
WORKDIR /go/scc
COPY . /scc
WORKDIR /scc
RUN go build -ldflags="-s -w"

FROM alpine:3.19
COPY --from=scc-get /go/scc/scc /bin/
COPY --from=scc-get /scc/scc /bin/
ENTRYPOINT ["scc"]

0 comments on commit 29bb9fe

Please sign in to comment.