Skip to content

Commit

Permalink
update to elixir 1.114 and phoenix 1.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
nicbet committed May 16, 2021
1 parent eff3277 commit 360ae29
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 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.5.8
FROM nicbet/phoenix:1.5.9

RUN apt-get install -y ruby \
&& gem install --no-ri --no-rdoc htmlbeautifier \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM elixir:1.11.3
FROM elixir:1.11.4
MAINTAINER Nicolas Bettenburg <[email protected]>

RUN mix local.hex --force \
&& mix archive.install --force hex phx_new 1.5.8 \
&& mix archive.install --force hex phx_new 1.5.9 \
&& apt-get update \
&& curl -sL https://deb.nodesource.com/setup_12.x | bash \
&& apt-get install -y apt-utils \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,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.5.8 you could run:
For instance, for a dockerized development environment for Phoenix 1.5.9 you could run:

```
git clone -b 1.5.8 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix
git clone -b 1.5.9 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix
```

### New with Elixir 1.9: Releases
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
docker build -t nicbet/phoenix:1.5.8 .
docker build -t nicbet/phoenix:1.5.9 .
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
version: '2'
version: "2"
services:
app:
image: nicbet/phoenix:1.5.8
image: nicbet/phoenix:1.5.9
build: .
ports:
- "4000:4000"
Expand Down

0 comments on commit 360ae29

Please sign in to comment.