mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-21 22:07:13 +00:00
8 lines
203 B
Docker
8 lines
203 B
Docker
FROM alpine
|
|
RUN apk add curl unzip
|
|
RUN curl -O https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
|
|
RUN unzip ngrok-stable-linux-amd64
|
|
FROM alpine
|
|
COPY --from=0 /ngrok /usr/local/bin/ngrok
|
|
|