diff --git a/Dockerfile b/Dockerfile index 42eb6f4..f74f63e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM elixir:1.14.5-alpine # Build Args -ARG PHOENIX_VERSION=1.7.8 +ARG PHOENIX_VERSION=1.7.9 # Apk RUN apk add bash build-base git inotify-tools nodejs-current npm yarn diff --git a/Makefile b/Makefile index dbdcb59..2d313d4 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ OWNER = nicbet IMAGE = phoenix TAG = $(OWNER)/$(IMAGE) -VERSION = 1.7.8-alpine +VERSION = 1.7.9-alpine all: docker-image test diff --git a/README.md b/README.md index d497ab1..43d9321 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ If you are using a recent version of [Visual Studio Code](https://code.visualstu 1. Use [Degit](https://github.com/Rich-Harris/degit) to quickly clone this project as a scaffold for your new project, for example an app called `hello_world`. ```css - npx degit nicbet/docker-phoenix#1.7.8 hello_world + npx degit nicbet/docker-phoenix#1.7.9 hello_world ``` 2. Open the `hello_world` folder in Visual Studio Code diff --git a/docker-compose.yml b/docker-compose.yml index c6d2f62..ba14314 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: "2" services: app: - image: nicbet/phoenix:1.7.8-alpine + image: nicbet/phoenix:1.7.9-alpine build: . ports: - "4000:4000"