diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -3,6 +3,7 @@ FROM debian:bullseye-slim AS build-stage COPY . /tmp/clog ARG KORE_VERSION=4.3.0-rc2 +ARG KORE_SHA256=e9e3c9faa02b6c9c81da4d98ac4b99e4b874c41ac642b2f2a6b087f998d3cf62 RUN set -e \ && apt-get update -qq \ @@ -15,9 +16,12 @@ RUN set -e \ libssl-dev \ libpq-dev \ && cd /tmp \ - && curl https://kore.io/releases/kore-${KORE_VERSION}.tar.gz --output kore-${KORE_VERSION}.tar.gz \ - && tar xf kore-${KORE_VERSION}.tar.gz \ - && cd kore-${KORE_VERSION} \ + && curl "https://kore.io/releases/kore-${KORE_VERSION}.tar.gz" --output "kore-${KORE_VERSION}.tar.gz" \ + && echo "${KORE_SHA256} kore-${KORE_VERSION}.tar.gz" > "kore-${KORE_VERSION}.tar.gz.sha256" \ + && cat "kore-${KORE_VERSION}.tar.gz.sha256" \ + && sha256sum -c "kore-${KORE_VERSION}.tar.gz.sha256" \ + && tar xf "kore-${KORE_VERSION}.tar.gz" \ + && cd "kore-${KORE_VERSION}" \ && make \ && make install \ && cd /tmp/clog \ |