From 02402713a699e3fd52049a5f4fc612ab5dfadf24 Mon Sep 17 00:00:00 2001 From: Nicolas Bettenburg Date: Fri, 10 Nov 2023 08:29:36 +0100 Subject: [PATCH] Phoenix Framework 1.7.6 --- Dockerfile | 4 ++-- Makefile | 2 +- README.md | 2 +- docker-compose.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index e761633..b609d34 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,14 @@ FROM elixir:1.14.5-alpine # Build Args -ARG PHOENIX_VERSION=1.7.5 +ARG PHOENIX_VERSION=1.7.6 # Apk RUN apk add bash build-base git inotify-tools nodejs-current npm yarn # Phoenix RUN mix local.hex --force -RUN mix archive.install --force hex phx_new #{PHOENIX_VERSION} +RUN mix archive.install --force hex phx_new ${PHOENIX_VERSION} RUN mix local.rebar --force # App Directory diff --git a/Makefile b/Makefile index 1231956..1650e2d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ OWNER = nicbet IMAGE = phoenix TAG = $(OWNER)/$(IMAGE) -VERSION = 1.7.5-alpine +VERSION = 1.7.6-alpine all: test diff --git a/README.md b/README.md index eb1dd2e..cec9317 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ If you are using a recent version of [Visual Studio Code](https://code.visualstu 1. Use [Degit](https://github.com/Rich-Harris/degit) to quickly clone this project as a scaffold for your new project, for example an app called `hello_world`. ```css - npx degit nicbet/docker-phoenix#1.7.5 hello_world + npx degit nicbet/docker-phoenix#1.7.6 hello_world ``` 2. Open the `hello_world` folder in Visual Studio Code diff --git a/docker-compose.yml b/docker-compose.yml index 4ed7a70..58d85b1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "2" services: app: - image: nicbet/phoenix:1.7.5-alpine + image: nicbet/phoenix:1.7.6-alpine build: . ports: - "4000:4000"