Codebase list chisel / ba5aaefd-ed99-41f0-9671-d54c16bb30e0/main Dockerfile
ba5aaefd-ed99-41f0-9671-d54c16bb30e0/main

Tree @ba5aaefd-ed99-41f0-9671-d54c16bb30e0/main (Download .tar.gz)

Dockerfile @ba5aaefd-ed99-41f0-9671-d54c16bb30e0/mainraw · history · blame

# build stage
FROM golang:alpine AS build-env
LABEL maintainer="[email protected]"
RUN apk update
RUN apk add git
ENV CGO_ENABLED 0
ADD . /src
WORKDIR /src
RUN go build \
    -ldflags "-X github.com/jpillora/chisel/share.BuildVersion=$(git describe --abbrev=0 --tags)" \
    -o chisel
# container stage
FROM alpine
RUN apk update && apk add --no-cache ca-certificates
WORKDIR /app
COPY --from=build-env /src/chisel /app/chisel
ENTRYPOINT ["/app/chisel"]