2
0

Dockerfile 248 B

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