Skip to content

Commit

Permalink
update phoenix framework to 1.6.15 (Oct 26, 2022)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicbet committed Dec 5, 2022
1 parent 7e5fb9b commit 1d570c1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nicbet/phoenix:1.6.14
FROM nicbet/phoenix:1.6.15

RUN apt-get install -y ruby \
&& gem install --no-document htmlbeautifier -v 1.3.1 \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM elixir:1.14.1

# Build Args
ARG PHOENIX_VERSION=1.6.14
ARG PHOENIX_VERSION=1.6.15
ARG NODEJS_VERSION=18.x

# Apt
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
OWNER = nicbet
IMAGE = phoenix
TAG = $(OWNER)/$(IMAGE)
VERSION = 1.6.14
VERSION = 1.6.15

all: test

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,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.14` you would run:
For instance, to set up a dockerized development environment for a project called `hello-phoenix` using Phoenix framework version `1.6.15` you would run:

```sh
# Clone this repository into a new project folder
git clone -b 1.6.14 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix
git clone -b 1.6.15 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix

# Go to the new project folder
cd ~/Projects/hello-phoenix
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: "2"
services:
app:
image: nicbet/phoenix:1.6.14
image: nicbet/phoenix:1.6.15
build: .
ports:
- "4000:4000"
Expand Down

0 comments on commit 1d570c1

Please sign in to comment.