ci: update dockerfile
Some checks failed
Checks / check (push) Successful in 1m36s
Build and Push Docker Image / Build and Push Image (push) Failing after 7m57s

This commit is contained in:
Vladimir Rubin 2024-11-28 10:23:34 +02:00
parent 71f10a0a9f
commit 569fff975a
Signed by: vavakado
GPG key ID: CAB744727F36B524
6 changed files with 14 additions and 4 deletions

3
.gitignore vendored
View file

@ -39,6 +39,3 @@ exmr-*.tar
# In case you use Node.js/npm, you want to ignore these.
npm-debug.log
/assets/node_modules/
# ignore release artifacts
/rel/

View file

@ -43,7 +43,7 @@ RUN mkdir config
# to ensure any relevant config change will trigger the dependencies
# to be re-compiled.
COPY config/config.exs config/${MIX_ENV}.exs config/
RUN mix deps.compile
RUN mix deps.compile --only $MIX_ENV
COPY priv priv

5
rel/overlays/bin/migrate Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
set -eu
cd -P -- "$(dirname -- "$0")"
exec ./exmr eval Exmr.Release.migrate

1
rel/overlays/bin/migrate.bat Executable file
View file

@ -0,0 +1 @@
call "%~dp0\exmr" eval Exmr.Release.migrate

5
rel/overlays/bin/server Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
set -eu
cd -P -- "$(dirname -- "$0")"
PHX_SERVER=true exec ./exmr start

2
rel/overlays/bin/server.bat Executable file
View file

@ -0,0 +1,2 @@
set PHX_SERVER=true
call "%~dp0\exmr" start