From 840675534b5d94043a7b30cb26c66ff5283f49eb Mon Sep 17 00:00:00 2001 From: Nicolas Bettenburg Date: Wed, 17 Aug 2022 10:31:56 +0200 Subject: [PATCH] feature: bump to phoenix framework 1.6.9 --- .devcontainer/Dockerfile | 2 +- Dockerfile | 2 +- Makefile | 2 +- README.md | 7 ++----- docker-compose.yml | 2 +- 5 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index b267f1f..cef6629 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM nicbet/phoenix:1.6.8 +FROM nicbet/phoenix:1.6.9 RUN apt-get install -y ruby \ && gem install --no-ri --no-rdoc htmlbeautifier -v 1.3.1 \ diff --git a/Dockerfile b/Dockerfile index 3b05138..dd5a3a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM elixir:1.13.4 # Build Args -ARG PHOENIX_VERSION=1.6.8 +ARG PHOENIX_VERSION=1.6.9 ARG NODEJS_VERSION=16.x # Apt diff --git a/Makefile b/Makefile index 98e6d37..0b23c39 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ OWNER = nicbet IMAGE = phoenix TAG = $(OWNER)/$(IMAGE) -VERSION = 1.6.8 +VERSION = 1.6.9 all: test diff --git a/README.md b/README.md index 7ffe6df..598eb59 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,5 @@ # A Containerized Dev Environment for Elixir and the Phoenix Framework -![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/nicbet/docker-phoenix) -![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/nicbet/phoenix) - ## Introduction A dockerized development environment to work on [Elixir](https://github.com/elixir-lang/elixir) and [Phoenix](https://github.com/phoenixframework/phoenix) framework projects while keeping the host environment pristine. @@ -17,11 +14,11 @@ Maybe you are working on multiple different projects, built with different versi To initialize a new development environment, clone this repository. You can specify a version tag to target a particular Phoenix framework version. We automatically pin the Elixir version of each release to the version of Elixir that was available at the time of the specific Phoenix framework release. -For instance, to set up a dockerized development environment for a project called `hello-phoenix` using Phoenix framework version `1.6.8` you would run: +For instance, to set up a dockerized development environment for a project called `hello-phoenix` using Phoenix framework version `1.6.9` you would run: ```sh # Clone this repository into a new project folder -git clone -b 1.6.8 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix +git clone -b 1.6.9 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix # Go to the new project folder cd ~/Projects/hello-phoenix diff --git a/docker-compose.yml b/docker-compose.yml index 6f01993..ffe82f4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "2" services: app: - image: nicbet/phoenix:1.6.8 + image: nicbet/phoenix:1.6.9 build: . ports: - "4000:4000"