File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ ARG base_image=alpine:latest
22
33FROM ${base_image} AS resource
44
5+ RUN apk update && apk upgrade
56RUN apk --no-cache add \
67 bash \
78 curl \
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ ARG base_image
22
33FROM ${base_image} AS resource
44
5- RUN apt-get update \
6- && apt-get install -y --no-install-recommends \
5+ RUN apt update && apt upgrade -y
6+ RUN apt install -y --no-install-recommends \
77 curl \
88 gnupg \
99 gzip \
@@ -17,12 +17,12 @@ RUN apt-get update \
1717 software-properties-common
1818
1919RUN apt-add-repository ppa:git-core/ppa \
20- && apt-get update \
21- && apt-get install -y git \
20+ && apt update \
21+ && apt install -y git \
2222 && rm -rf /var/lib/apt/lists/*
2323
2424RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
25- RUN apt-get install -y git-lfs
25+ RUN apt install -y git-lfs
2626
2727WORKDIR /root
2828RUN git clone https://github.com/proxytunnel/proxytunnel.git && \
@@ -193,7 +193,7 @@ ADD test/ /tests
193193RUN /tests/all.sh
194194
195195FROM resource AS integrationtests
196- RUN apt-get update && apt-get install -y squid
196+ RUN apt update && apt install -y squid
197197ADD test/ /tests/test
198198ADD integration-tests /tests/integration-tests
199199RUN /tests/integration-tests/integration.sh
You can’t perform that action at this time.
0 commit comments