Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#===========
#(Elixir) Build Stage
#===========
FROM elixir:1.18.0-otp-27-alpine as builder-elixir
FROM elixir:1.18.3-otp-27-alpine as builder-elixir

# Install git and build essentials
RUN apk add --no-cache git build-base
Expand All @@ -28,7 +28,7 @@ RUN mix local.hex --force && \
#================
#Deployment Stage
#================
FROM elixir:1.18.0-otp-27-alpine as deployer
FROM elixir:1.18.3-otp-27-alpine as deployer
# RUN mkdir -p /app/test /app/prod

RUN apk add --no-cache git bash curl netcat-openbsd build-base && rm -rf /var/cache/apk/*
Expand Down
Loading