You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#18 [stage-2 4/4] RUN groupadd --system --gid 1000 rails && useradd rails --uid 1000 --gid 1000 --create-home --shell /bin/bash && chown -R 1000:1000 db log storage tmp
#18 0.202 chown: cannot access 'storage': No such file or directory
#18 ERROR: process "/bin/sh -c groupadd --system --gid 1000 rails && useradd rails --uid 1000 --gid 1000 --create-home --shell /bin/bash && chown -R 1000:1000 db log storage tmp" did not complete successfully: exit code: 1
------
> [stage-2 4/4] RUN groupadd --system --gid 1000 rails && useradd rails --uid 1000 --gid 1000 --create-home --shell /bin/bash && chown -R 1000:1000 db log storage tmp:
0.202 chown: cannot access 'storage': No such file or directory
We are seeing issue when trying to deploy to fly from GH Actions - Why is the storage directory included in this generated line?
# Run and own only the runtime files as a non-root user for security
RUN groupadd --system --gid 1000 rails && \
useradd rails --uid 1000 --gid 1000 --create-home --shell /bin/bash && \
chown -R 1000:1000 db log storage tmp
The text was updated successfully, but these errors were encountered:
We are seeing issue when trying to deploy to fly from GH Actions - Why is the storage directory included in this generated line?
The text was updated successfully, but these errors were encountered: