From a6d2ef90285759a88abb7349bf996775886defd8 Mon Sep 17 00:00:00 2001 From: Tristan Date: Mon, 6 Jun 2022 09:06:05 +0100 Subject: [PATCH] Fix dockerfile copy dist filenames --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 48cdbc8..d36fb11 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,16 @@ FROM docker.io/library/debian:bullseye as base -# This stage is mostly to import and unpack the dists +# This stage is mostly to import and unpack the dists in a docker-friendly fashion FROM base as dists RUN apt -qq update && apt install -qq -y bzip2 WORKDIR /tmp/quictls -COPY ./deps/quictls/quictls-OpenSSL_1_1_1o-dist.tar.gz /tmp/quictls/quictls.tar.gz +COPY ./deps/quictls/quictls-dist.tar.gz /tmp/quictls/quictls.tar.gz RUN ls -alh && tar xf quictls.tar.gz WORKDIR /tmp/haproxy -COPY ./haproxy/haproxy-2.6-dist.tar.gz /tmp/haproxy/haproxy.tar.gz +COPY ./haproxy/haproxy-dist.tar.gz /tmp/haproxy/haproxy.tar.gz RUN ls -alh && tar xf haproxy.tar.gz FROM base