A fast TCP/UDP tunnel over HTTP
docker pull jpillora/chisel:latest
docker run -d --name chisel --restart always jpillora/chisel:latest
# goreleaser builds the binary and provides it in the build context
FROM alpine:3 AS certs
RUN apk add --no-cache ca-certificates
FROM scratch
LABEL maintainer="[email protected]"
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
WORKDIR /app
COPY chisel /app/bin
ENTRYPOINT ["/app/bin"]