Skip to content

Commit

Permalink
add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jpicht committed Mar 15, 2022
1 parent bd2cf2e commit ee23586
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM golang AS build

ENV CGO_ENABLED 0
RUN go install github.com/jpicht/azcat/cmd/[email protected]

FROM alpine

COPY --from=build /go/bin/azblob /bin

RUN ln -s /bin/azblob /bin/azcat && \
ln -s /bin/azblob /bin/azls && \
ln -s /bin/azblob /bin/azping && \
ln -s /bin/azblob /bin/azput && \
ln -s /bin/azblob /bin/azrm

0 comments on commit ee23586

Please sign in to comment.