Skip to content

Commit

Permalink
fix - adjust docker permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
chaddyc committed Dec 31, 2024
1 parent 57dde3a commit 4b93701
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,22 @@ ENV RUNNER_ARCH=${RUNNER_ARCH}

ENV DEBIAN_FRONTEND=noninteractive

RUN echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null


RUN apt-get update && apt-get install -y \
curl \
jq \
git \
tar \
sudo \
docker-ce \
docker-ce-cli \
docker-buildx-plugin \
docker-compose-plugin \
software-properties-common && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit 4b93701

Please sign in to comment.