Fix dockerfile copy dist filenames

This commit is contained in:
Tristan 2022-06-06 09:06:05 +01:00
parent 31e04bdb3e
commit a6d2ef9028
No known key found for this signature in database
GPG Key ID: BDDFC4A0651ACDE4
1 changed files with 3 additions and 3 deletions

View File

@ -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