Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update "Deploying with Docker" docs for Elixir 1.12 #737

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/guides/working_with_docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ following content:
```docker
# The version of Alpine to use for the final image
# This should match the version of Alpine that the `elixir:1.7.2-alpine` image uses
ARG ALPINE_VERSION=3.8
ARG ALPINE_VERSION=3.13

FROM elixir:1.7.2-alpine AS builder
FROM elixir:1.12.1-alpine AS builder

# The following are build arguments used to change variable parts of the image.
# The name of your application/release (required)
Expand Down Expand Up @@ -98,7 +98,8 @@ ARG APP_NAME
RUN apk update && \
apk add --no-cache \
bash \
openssl-dev
openssl-dev \
libstdc++

ENV REPLACE_OS_VARS=true \
APP_NAME=${APP_NAME}
Expand Down