From 04660348909f65bca6f3b2df00272678f2bcc34a Mon Sep 17 00:00:00 2001 From: Nicolas Bettenburg Date: Thu, 27 Jan 2022 09:33:31 -0500 Subject: [PATCH] bump to Phoenix 1.6.6 --- .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 3e8fc67..574f011 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM nicbet/phoenix:1.6.5 +FROM nicbet/phoenix:1.6.6 RUN apt-get install -y ruby \ && gem install --no-ri --no-rdoc htmlbeautifier -v 1.3.1 \ diff --git a/Dockerfile b/Dockerfile index 1f1ebea..becc562 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM elixir:1.13.1 # Build Args -ARG PHOENIX_VERSION=1.6.5 +ARG PHOENIX_VERSION=1.6.6 ARG NODEJS_VERSION=16.x # Apt diff --git a/Makefile b/Makefile index da9f7f1..2d97092 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ OWNER = nicbet IMAGE = phoenix TAG = $(OWNER)/$(IMAGE) -VERSION = 1.6.5 +VERSION = 1.6.6 all: test diff --git a/README.md b/README.md index d2d3eed..4066b65 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.5 you could run: +For instance, for a dockerized development environment for Phoenix 1.6.6 you could run: ``` -git clone -b v1.6.5 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix +git clone -b v1.6.6 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 10fd721..6d8349d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "2" services: app: - image: nicbet/phoenix:1.6.5 + image: nicbet/phoenix:1.6.6 build: . ports: - "4000:4000"