Cleanup path

This commit is contained in:
TheSpad 2022-11-15 09:27:16 +00:00
parent 5bba01780d
commit 0f98d50b6e
No known key found for this signature in database
GPG key ID: 08F06191F4587860
5 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@ LABEL maintainer="TheSpad"
ENV RAILS_ENV="production" \
NODE_ENV="production" \
PATH="${PATH}:/opt/ruby/bin:/opt/node/bin:/app/www/bin"
PATH="${PATH}:/app/www/bin"
RUN \
apk add -U --upgrade --no-cache \

View file

@ -8,7 +8,7 @@ LABEL maintainer="TheSpad"
ENV RAILS_ENV="production" \
NODE_ENV="production" \
PATH="${PATH}:/opt/ruby/bin:/opt/node/bin:/app/www/bin"
PATH="${PATH}:/app/www/bin"
RUN \
apk add -U --upgrade --no-cache \

View file

@ -2,7 +2,7 @@
# shellcheck shell=bash
RAILS_ENV=production
PATH="${PATH}:/opt/ruby/bin:/opt/node/bin:/app/www/bin"
PATH="${PATH}:/app/www/bin"
RAILS_SERVE_STATIC_FILES=false
exec \

View file

@ -2,7 +2,7 @@
# shellcheck shell=bash
RAILS_ENV=production
PATH="${PATH}:/opt/ruby/bin:/opt/node/bin:/app/www/bin"
PATH="${PATH}:/app/www/bin"
cd /app/www || exit 1

View file

@ -2,7 +2,7 @@
# shellcheck shell=bash
NODE_ENV=production
PATH="${PATH}:/opt/ruby/bin:/opt/node/bin:/app/www/bin"
PATH="${PATH}:/app/www/bin"
exec \
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 4000" \