This repository has been archived on 2025-06-18. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
casino/frontend/docker-entrypoint.sh

8 lines
No EOL
235 B
Bash

#!/bin/sh
# Replace environment variables in env.js
envsubst < /usr/share/nginx/html/env.js > /usr/share/nginx/html/env.js.tmp
mv /usr/share/nginx/html/env.js.tmp /usr/share/nginx/html/env.js
# Start nginx
exec nginx -g 'daemon off;'