From 305f69f5599e84b50af4c6c88710f6fa5a535e4c Mon Sep 17 00:00:00 2001 From: Nicolas Bettenburg Date: Thu, 27 Jan 2022 09:24:20 -0500 Subject: [PATCH] bump to Phoenix 1.6.4 --- .devcontainer/Dockerfile | 2 +- Dockerfile | 2 +- Makefile | 2 +- README.md | 4 ++-- docker-compose.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 8e2de95..7895afb 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM nicbet/phoenix:1.6.3 +FROM nicbet/phoenix:1.6.4 RUN apt-get install -y ruby \ && gem install --no-ri --no-rdoc htmlbeautifier -v 1.3.1 \ diff --git a/Dockerfile b/Dockerfile index f17887d..a80110b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM elixir:1.13.0 # Build Args -ARG PHOENIX_VERSION=1.6.3 +ARG PHOENIX_VERSION=1.6.4 ARG NODEJS_VERSION=16.x # Apt diff --git a/Makefile b/Makefile index 88b6a55..837241b 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ OWNER = nicbet IMAGE = phoenix TAG = $(OWNER)/$(IMAGE) -VERSION = 1.6.3 +VERSION = 1.6.4 all: test diff --git a/README.md b/README.md index 6e2d8db..2a3a5a5 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,10 @@ It's so simple: just clone this repository. You can specify a particular Phoenix version by targeting the corresponding release tag of this repository. -For instance, for a dockerized development environment for Phoenix 1.6.3 you could run: +For instance, for a dockerized development environment for Phoenix 1.6.4 you could run: ``` -git clone -b v1.6.3 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix +git clone -b v1.6.4 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix ``` ### New with Elixir 1.9: Releases diff --git a/docker-compose.yml b/docker-compose.yml index 79e9da5..64af7b7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "2" services: app: - image: nicbet/phoenix:1.6.3 + image: nicbet/phoenix:1.6.4 build: . ports: - "4000:4000"