forked from AkkomaGang/admin-fe
e813cbf7dd
- .dockerignore for building - Dockerfile created usign node-10-alpine and nginx-mainline - docker/ scripts and templates added
4 lines
134 B
Bash
Executable file
4 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
envsubst "$(env | sed -e 's/=.*//' -e 's/^/\$/g')" < "/etc/nginx/nginx.conf.tpl" > "/etc/nginx/nginx.conf"
|
|
exec "$@"
|