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
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ FROM ghcr.io/actions/actions-runner:2.322.0@sha256:c02e8e1b479ea39b196c3bb0a40a6
USER root

RUN apt-get update \
&& apt-get -y install curl git \
&& apt-get -y install jq \
&& apt-get -y install zip unzip \
&& apt-get -y install build-essential \
&& apt-get -y install ca-certificates wget apt-transport-https lsb-release gnupg \
&& apt-get -y install curl git \
&& apt-get -y install jq \
&& apt-get -y install zip unzip \
&& apt-get -y install build-essential \
&& apt-get -y install ca-certificates wget apt-transport-https lsb-release gnupg \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/

Expand Down