From da71038d74c639ddb40fc177c89e0ec6c59d593e Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Tue, 22 Oct 2024 23:48:18 +0200 Subject: [PATCH] Fix Dockerfile editor settings writing (#158) The script relies on Bash-specific features, so Bash must be used instead of POSIX sh or dash. --- Dockerfile | 1 + mono.Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9cfc2f3..10ade14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM ubuntu:jammy LABEL author="https://github.com/aBARICHELLO/godot-ci/graphs/contributors" USER root +SHELL ["/bin/bash", "-c"] ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \ diff --git a/mono.Dockerfile b/mono.Dockerfile index 95d7c1f..6dae860 100644 --- a/mono.Dockerfile +++ b/mono.Dockerfile @@ -2,6 +2,7 @@ FROM mono:latest LABEL author="https://github.com/aBARICHELLO/godot-ci/graphs/contributors" USER root +SHELL ["/bin/bash", "-c"] ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \