Skip to content

Commit acad7b1

Browse files
committed
fix: add unzip installation to Dockerfile
Set DEBIAN_FRONTEND to noninteractive to streamline the build process and install unzip for handling dependencies.
1 parent 6858d56 commit acad7b1

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/actions/docker/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ runs:
4949
run: |
5050
cat << 'EOF' >> Dockerfile
5151
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/*
5256
COPY ["${{ inputs.source }}", "quarto-linux-amd64.deb"]
5357
RUN dpkg -i quarto-linux-amd64.deb && rm quarto-linux-amd64.deb
5458
EOF

0 commit comments

Comments
 (0)