Codebase list chisel / run/e47d7088-474e-4f14-921a-6e1acbadff94/main Dockerfile
run/e47d7088-474e-4f14-921a-6e1acbadff94/main

Tree @run/e47d7088-474e-4f14-921a-6e1acbadff94/main (Download .tar.gz)

Dockerfile @run/e47d7088-474e-4f14-921a-6e1acbadff94/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"]