We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6858d56 commit acad7b1Copy full SHA for acad7b1
1 file changed
.github/actions/docker/action.yml
@@ -49,6 +49,10 @@ runs:
49
run: |
50
cat << 'EOF' >> Dockerfile
51
FROM ubuntu:22.04
52
+ ENV DEBIAN_FRONTEND=noninteractive
53
+ RUN apt-get update \
54
+ && apt-get install -y --no-install-recommends unzip \
55
+ && rm -rf /var/lib/apt/lists/*
56
COPY ["${{ inputs.source }}", "quarto-linux-amd64.deb"]
57
RUN dpkg -i quarto-linux-amd64.deb && rm quarto-linux-amd64.deb
58
EOF
0 commit comments