From 7dcf74ec4a05e80212162e666f4d3068af7940c9 Mon Sep 17 00:00:00 2001 From: Nicolas Bettenburg Date: Thu, 9 Nov 2023 16:51:26 +0100 Subject: [PATCH] Phoenix Framework 1.7.2 --- Dockerfile | 2 +- Makefile | 2 +- README.md | 2 +- docker-compose.yml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 61dabed..f8e396e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM elixir:1.14.3-alpine # Build Args -ARG PHOENIX_VERSION=1.7.1 +ARG PHOENIX_VERSION=1.7.2 # Apk RUN apk add bash git inotify-tools nodejs-current npm yarn diff --git a/Makefile b/Makefile index c0a3373..2386d8e 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ OWNER = nicbet IMAGE = phoenix TAG = $(OWNER)/$(IMAGE) -VERSION = 1.7.1-alpine +VERSION = 1.7.2-alpine all: test diff --git a/README.md b/README.md index ef3dcb6..9ce3db7 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.1 hello_world + npx degit nicbet/docker-phoenix#1.7.2 hello_world ``` 2. Open the `hello_world` folder in Visual Studio Code diff --git a/docker-compose.yml b/docker-compose.yml index f77f48b..ccfdcbc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "2" services: app: - image: nicbet/phoenix:1.7.1-alpine + image: nicbet/phoenix:1.7.2-alpine build: . ports: - "4000:4000" @@ -15,7 +15,7 @@ services: depends_on: - db db: - image: postgres:12 + image: postgres:14 environment: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres