Skip to content

Commit

Permalink
Use Alpine 3.18 in Dockerfile
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dentarg committed Dec 11, 2023
1 parent 7215451 commit af9abd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit af9abd6

Please sign in to comment.