File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ FROM ruby:${RUBY_VERSION}-alpine as assets
32
32
ARG APP_ROOT
33
33
ARG RAILS_MASTER_KEY
34
34
35
- ENV RAILS_MASTER_KEY $RAILS_MASTER_KEY
35
+ ENV RAILS_MASTER_KEY= $RAILS_MASTER_KEY
36
36
37
37
<%- if packages.select(&:runtime?).any? -%>
38
38
RUN apk add --no-cache <%= packages.select(&:runtime?).join(' ') %> yarn
@@ -47,7 +47,7 @@ COPY --from=base ${APP_ROOT}/vendor/bundle ${APP_ROOT}/vendor/bundle
47
47
RUN mkdir -p ${APP_ROOT}
48
48
COPY . ${APP_ROOT}
49
49
50
- ENV RAILS_ENV production
50
+ ENV RAILS_ENV= production
51
51
WORKDIR ${APP_ROOT}
52
52
RUN bundle exec rake assets:precompile
53
53
@@ -81,14 +81,14 @@ COPY . ${APP_ROOT}
81
81
<%- if config.revision -%>
82
82
83
83
ARG REVISION
84
- ENV REVISION $REVISION
85
- ENV COMMIT_SHORT_SHA $REVISION
84
+ ENV REVISION= $REVISION
85
+ ENV COMMIT_SHORT_SHA= $REVISION
86
86
RUN echo "${REVISION}" > ${APP_ROOT}/REVISION
87
87
<%- end -%>
88
88
<%- if config.sentry_release -%>
89
89
90
90
ARG SENTRY_RELEASE
91
- ENV SENTRY_RELEASE $SENTRY_RELEASE
91
+ ENV SENTRY_RELEASE= $SENTRY_RELEASE
92
92
<%- end -%>
93
93
94
94
# Apply Execute Permission
You can’t perform that action at this time.
0 commit comments