hatamo commited on
Commit
8325606
·
1 Parent(s): 0213d1f

Updated Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -47,6 +47,9 @@ RUN bundle install && \
47
  # Copy application code
48
  COPY . .
49
 
 
 
 
50
  # Precompile bootsnap code for faster boot times.
51
  # -j 1 disable parallel compilation to avoid a QEMU bug: https://github.com/rails/bootsnap/issues/495
52
  RUN bundle exec bootsnap precompile -j 1 app/ lib/
 
47
  # Copy application code
48
  COPY . .
49
 
50
+ # Make bin scripts executable
51
+ RUN chmod +x bin/*
52
+
53
  # Precompile bootsnap code for faster boot times.
54
  # -j 1 disable parallel compilation to avoid a QEMU bug: https://github.com/rails/bootsnap/issues/495
55
  RUN bundle exec bootsnap precompile -j 1 app/ lib/