Codebase list chisel / 4c348044-6560-41af-97ab-00b07bca9a50/upstream Dockerfile
4c348044-6560-41af-97ab-00b07bca9a50/upstream

Tree @4c348044-6560-41af-97ab-00b07bca9a50/upstream (Download .tar.gz)

Dockerfile @4c348044-6560-41af-97ab-00b07bca9a50/upstreamraw · 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"]