1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

(bug) unable to generate the secret key base during the setup

This commit is contained in:
Sylvain 2022-06-08 20:56:51 +02:00
parent 0b64e08e66
commit 7cc31e3872
2 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,7 @@
- Improved docker image building time
- Use relative paths in mount scripts
- Fix a bug: unable to generate the secret key base during the setup
## v5.4.4 2022 June 8

View File

@ -50,7 +50,9 @@ RUN bundle config set --local without 'development test doc' && bundle install &
# Prepare the application directories
RUN mkdir -p /var/log/supervisor && \
mkdir -p /usr/src/app/tmp/sockets && \
mkdir -p /usr/src/app/tmp/pids
mkdir -p /usr/src/app/tmp/pids && \
mkdir -p /usr/src/app/tmp/cache && \
chmod -R a+w /usr/src/app/tmp
# Install Javascript packages
WORKDIR /usr/src/app