Skip to content

Commit

Permalink
fix(dockerfile): bad copypasta
Browse files Browse the repository at this point in the history
  • Loading branch information
shakefu committed Nov 17, 2023
1 parent 76f477b commit 25287da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ RUN useradd \
RUN chsh --shell "/usr/bin/zsh" "${USER}"

# Install Docker CE CLI
RUN apt-get update \
apt-get install -y apt-transport-https ca-certificates curl gnupg2 lsb-release && \
RUN apt-get update --yqq && \
apt-get install -yqq apt-transport-https ca-certificates curl gnupg2 lsb-release && \
curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/gpg | apt-key add - 2>/dev/null && \
echo "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list && \
apt-get update && \
apt-get install -y docker-ce-cli
apt-get update -yqq && \
apt-get install -yqq docker-ce-cli

# Create docker-init script which configures user group permissions
RUN echo -e "#!/bin/sh\n\
Expand Down

0 comments on commit 25287da

Please sign in to comment.