Fix Dockerfile editor settings writing (#158)

The script relies on Bash-specific features, so Bash must
be used instead of POSIX sh or dash.
This commit is contained in:
Hugo Locurcio
2024-10-22 23:48:18 +02:00
committed by GitHub
parent 4d5edd8c46
commit da71038d74
2 changed files with 2 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ FROM ubuntu:jammy
LABEL author="https://github.com/aBARICHELLO/godot-ci/graphs/contributors" LABEL author="https://github.com/aBARICHELLO/godot-ci/graphs/contributors"
USER root USER root
SHELL ["/bin/bash", "-c"]
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \ ca-certificates \

View File

@@ -2,6 +2,7 @@ FROM mono:latest
LABEL author="https://github.com/aBARICHELLO/godot-ci/graphs/contributors" LABEL author="https://github.com/aBARICHELLO/godot-ci/graphs/contributors"
USER root USER root
SHELL ["/bin/bash", "-c"]
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \ ca-certificates \