Skip to content

Commit

Permalink
Upgrade the base elixir/alpine image
Browse files Browse the repository at this point in the history
Fix docker security warnings about alpine linux vulnerabilities

Signed-off-by: Roumen Roupski <[email protected]>
  • Loading branch information
rroupski-splunk committed Sep 12, 2023
1 parent af062b4 commit 77dc273
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM elixir:1.14-alpine as builder
FROM elixir:1.15-alpine as builder

# prepare build dir
WORKDIR /app
Expand Down Expand Up @@ -38,7 +38,7 @@ RUN mix release

# start a new build stage so that the final image will only contain
# the compiled release and other runtime necessities
FROM elixir:1.14-alpine
FROM elixir:1.15-alpine

# Set the locale
# RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen
Expand Down

0 comments on commit 77dc273

Please sign in to comment.