Skip to content

Commit

Permalink
bump to Phoenix 1.6.5 and Elixir 1.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nicbet committed Jan 27, 2022
1 parent 305f69f commit d9496fe
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 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.4
FROM nicbet/phoenix:1.6.5

RUN apt-get install -y ruby \
&& gem install --no-ri --no-rdoc htmlbeautifier -v 1.3.1 \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM elixir:1.13.0
FROM elixir:1.13.1

# Build Args
ARG PHOENIX_VERSION=1.6.4
ARG PHOENIX_VERSION=1.6.5
ARG NODEJS_VERSION=16.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.4
VERSION = 1.6.5

all: test

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4 you could run:
For instance, for a dockerized development environment for Phoenix 1.6.5 you could run:

```
git clone -b v1.6.4 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix
git clone -b v1.6.5 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix
```

### New with Elixir 1.9: Releases
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.4
image: nicbet/phoenix:1.6.5
build: .
ports:
- "4000:4000"
Expand Down

0 comments on commit d9496fe

Please sign in to comment.