Skip to content

Commit

Permalink
Feature: Phoenix 1.4.0
Browse files Browse the repository at this point in the history
Updated versions to Phoenix 1.4.0 and Elixir 1.7.4

Resolves: #2
  • Loading branch information
nicbet committed Nov 20, 2018
1 parent bab90a8 commit e8c447f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,8 +1,8 @@
FROM elixir:1.6.5
FROM elixir:1.7.4
MAINTAINER Nicolas Bettenburg <nicbet@gmail.com>

RUN mix local.hex --force \
&& mix archive.install --force https://github.com/phoenixframework/archives/raw/master/phx_new-1.3.3.ez \
&& mix archive.install --force hex phx_new 1.4.0 \
&& apt-get update \
&& curl -sL https://deb.nodesource.com/setup_8.x | bash \
&& apt-get install -y apt-utils \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -17,9 +17,9 @@ 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.3.3 you could run:
For instance, for a dockerized development environment for Phoenix 1.4.0 you could run:
```
git clone -b 1.3.3 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix
git clone -b 1.4.0 https://github.com/nicbet/docker-phoenix ~/Projects/hello-phoenix
```


Expand Down
2 changes: 1 addition & 1 deletion build.sh
@@ -1,2 +1,2 @@
#!/bin/sh
docker build -t phoenix:1.3.3 .
docker build -t phoenix:1.4.0 .
2 changes: 1 addition & 1 deletion docker-compose.yml
Expand Up @@ -2,7 +2,7 @@
version: '2'
services:
app:
image: phoenix:1.3.3
image: phoenix:1.4.0
build: .
ports:
- "4000:4000"
Expand Down

0 comments on commit e8c447f

Please sign in to comment.