Skip to content

Commit 8182296

Browse files
committed
Remove all references to K8
- K8 is set to 'yes' on deployment
1 parent 54f252b commit 8182296

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.docker/app/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ COPY . .
77
USER root
88

99
ARG RAILS_MASTER_KEY=$MANIFOLD_MASTER_KEY \
10-
RAILS_ENV=production \
11-
K8=yes
10+
RAILS_ENV=production
1211

1312
RUN apk add -U --no-cache \
1413
bash=5.3.3-r1 \
@@ -38,7 +37,7 @@ RUN apk add -U --no-cache \
3837
bundle install --jobs=8 && \
3938
find "$GEM_HOME" -name Gemfile.lock -exec rm "{}" \; && \
4039
find "$GEM_HOME" -name yarn.lock -exec rm "{}" \; && \
41-
K8=no SECRET_KEY_BASE=dummy bundle exec rails assets:precompile && \
40+
SECRET_KEY_BASE=dummy bundle exec rails assets:precompile && \
4241
if [ "${RAILS_ENV}" = "production" ]; then rm -rf node_modules; fi && \
4342
if [ "${RAILS_ENV}" = "production" ]; then rm -rf tmp/*; fi && \
4443
if [ "${RAILS_ENV}" = "production" ]; then apk del build-dependencies; fi && \

0 commit comments

Comments
 (0)