From af9abd6656c7260d78ed3f503e3983bb602cc4c9 Mon Sep 17 00:00:00 2001 From: Patrik Ragnarsson Date: Mon, 11 Dec 2023 14:57:03 +0100 Subject: [PATCH] Use Alpine 3.18 in Dockerfile Alpine 3.19 was recently release: https://www.alpinelinux.org/posts/Alpine-3.19.0-released.html and it does not have libssl1.1 anymore We should start to use OpenSSL 3 but doing this so main branch isn't broken. Reported in #141. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 567fdc6..9efa80f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN shards install --production COPY src/ src/ RUN shards build --production --release --debug -FROM alpine:latest +FROM alpine:3.18 RUN apk add --no-cache libssl1.1 pcre2 libevent libgcc \ && addgroup --gid 1000 amqpproxy \ && adduser --no-create-home --disabled-password --uid 1000 amqpproxy -G amqpproxy