File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ ARG PUB_VERTD_URL
99ARG PUB_DISABLE_ALL_EXTERNAL_REQUESTS
1010ARG PUB_DONATION_URL
1111ARG PUB_STRIPE_KEY
12+ ARG PUB_DISABLE_FAILURE_BLOCKS=false
1213
1314ENV PUB_ENV=${PUB_ENV}
1415ENV PUB_HOSTNAME=${PUB_HOSTNAME}
@@ -17,6 +18,7 @@ ENV PUB_VERTD_URL=${PUB_VERTD_URL}
1718ENV PUB_DISABLE_ALL_EXTERNAL_REQUESTS=${PUB_DISABLE_ALL_EXTERNAL_REQUESTS}
1819ENV PUB_DONATION_URL=${PUB_DONATION_URL}
1920ENV PUB_STRIPE_KEY=${PUB_STRIPE_KEY}
21+ ENV PUB_DISABLE_FAILURE_BLOCKS=${PUB_DISABLE_FAILURE_BLOCKS}
2022
2123COPY package.json ./
2224
@@ -39,4 +41,4 @@ COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf
3941COPY --from=builder /app/build /usr/share/nginx/html
4042
4143HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
42- CMD curl --fail --silent --output /dev/null http://localhost || exit 1
44+ CMD curl --fail --silent --output /dev/null http://localhost || exit 1
You can’t perform that action at this time.
0 commit comments