* added ex_check and got it passing * Set up ex_check to run in test env * Added static code analysis * Updated actions file * Updated dockerfile
13 lines
221 B
YAML
13 lines
221 B
YAML
version: '3'
|
|
services:
|
|
phx:
|
|
build:
|
|
context: .
|
|
dockerfile: dev.Dockerfile
|
|
environment:
|
|
- MIX_ENV=test
|
|
volumes:
|
|
- '.:/app'
|
|
ports:
|
|
- '4008:4008'
|
|
command: tail -F /dev/null
|