2
0

Dockerfile 178 B

1234567891011
  1. FROM ubuntu:latest
  2. COPY get-porter-cli.sh /scratch/
  3. RUN apt-get update && apt-get install -y curl unzip git
  4. ARG VERSION
  5. RUN /scratch/get-porter-cli.sh
  6. ENTRYPOINT ["porter"]