We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6df454c commit 0651b9bCopy full SHA for 0651b9b
docker/Dockerfile.dev
@@ -63,12 +63,13 @@ WORKDIR /app
63
VOLUME /app
64
65
################### POSTGRESQL
66
-ENV PGDATA /app/tmp/postgresql/data
+ENV PGDATA="/app/tmp/postgresql/data"
67
68
# fixed bundler version because latest version 2.3.21 produces errors when resolving dependencies
69
# or an endless loop when the gem directory needs to be rebuilt
70
RUN gem install bundler -v 2.3.20 && bundle config set --local path 'vendor/bundle'
71
RUN echo -e '#!/bin/bash\n\n\
72
+ set -e \n\
73
bundle install \n\
74
yarn \n\
75
mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA"\n\
0 commit comments