0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-07 22:25:35 +00:00

Set pipefail true for bash in Dockerfile ()

Set pipefail true for bash in Dockerfile
This commit is contained in:
Amin Vakil 2024-12-19 17:24:42 +03:30 committed by GitHub
parent 5f94889d01
commit 81869989fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,7 @@
FROM python:3.13.1-slim-bookworm AS builder
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
COPY requirements.txt /tmp
RUN \
apt-get update && \