Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f7c20eb

Browse files
committedJun 2, 2025
Dockerfile: add redundant SHELL command to satiate hadolint
1 parent 883c208 commit f7c20eb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ HEALTHCHECK --start-period=3s CMD [ "curl", "--fail", "http://localhost:8000/hea
9292

9393
################### Development Server
9494
FROM server AS develop
95+
SHELL [ "/bin/bash", "-euo", "pipefail", "-c" ]
9596

9697
ENV COLUMNS=120
9798
ENV PLACK_ENV=development
@@ -111,6 +112,7 @@ USER metacpan
111112

112113
################### Test Runner
113114
FROM develop AS test
115+
SHELL [ "/bin/bash", "-euo", "pipefail", "-c" ]
114116

115117
ENV NO_UPDATE_NOTIFIER=1
116118
ENV PLACK_ENV=

0 commit comments

Comments
 (0)
Please sign in to comment.