Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions ci-runner/Dockerfile-v27
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,17 @@ RUN apk update && apk add --no-cache --virtual .build-deps && apk add bash && ap
apk --purge -v del py-pip && \
rm /var/cache/apk/*

# Ensure /bin/sh reads /etc/shinit for interactive shells
ENV ENV=/etc/shinit

# Disable core dumps for login shells, bash, and non-login /bin/sh
RUN set -euo pipefail; \
mkdir -p /etc/profile.d; \
printf 'ulimit -c 0\n' > /etc/profile.d/disable-core.sh; \
printf 'ulimit -c 0\n' > /etc/bash.bashrc; \
printf 'ulimit -c 0\n' >> /root/.bashrc; \
printf 'ulimit -c 0\n' > /etc/shinit

COPY --from=docker/compose:1.29.2 /usr/local/bin/docker-compose /usr/bin/docker-compose

COPY ./buildpack.json /git-ask-pass.sh /
Expand Down
Loading