-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
35 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM elixir:1.12.2 | ||
FROM elixir:1.12.3 | ||
MAINTAINER Nicolas Bettenburg <[email protected]> | ||
|
||
RUN mix local.hex --force \ | ||
&& mix archive.install --force hex phx_new 1.5.12 \ | ||
&& mix archive.install --force hex phx_new 1.6.0 \ | ||
&& apt-get update \ | ||
&& curl -sL https://deb.nodesource.com/setup_12.x | bash \ | ||
&& apt-get install -y apt-utils \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/sh | ||
docker build -t nicbet/phoenix:1.5.12 . | ||
docker build -t nicbet/phoenix:1.6.0 . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env bash | ||
docker-compose run --rm app $@ | ||
docker-compose run --rm app chown -R $(id -u):$(id -g) . | ||
docker-compose run --service-ports --rm app $@ | ||
docker-compose run --service-ports --rm app chown -R $(id -u):$(id -g) . |
5fb35ac
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Heads up: looks like the tag 1.6.0 on dockerhub nicbet/phoenix is not released.
5fb35ac
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me take a look. I believe Docker with their recent updates to Registry and paid accounts may have disabled automated builds for this repo....
5fb35ac
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's published now. Will look into building and publishing releases with GH Actions going forward. Thanks for the heads-up @Largo!