Skip to content

Commit

Permalink
rejoice! docker is not actually needed
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyMatt committed Jul 16, 2024
1 parent 38768d6 commit cac495a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
5 changes: 0 additions & 5 deletions Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ RUN apt update && apt install -y \
peg python3 python3-pip python3-venv \
software-properties-common wget

# Add docker repo
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker.gpg
RUN echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker.gpg] https://download.docker.com/linux/debian $(lsb_release -cs 2> /dev/null) stable" > /etc/apt/sources.list.d/docker.list
RUN apt update && apt install -y containerd.io docker-buildx-plugin docker-ce docker-ce-cli docker-compose-plugin

RUN apt upgrade -y

# Get LLVM, Clang
Expand Down
12 changes: 6 additions & 6 deletions Dockerfile.ubuntu
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM ubuntu:jammy AS base

RUN apt update -y && apt install -y \
automake build-essential cmake curl docker-buildx \
docker-compose-v2 git gnupg lcov libssl-dev libtool \
lsb-release m4 openssl peg python3 python3-pip \
python3-venv software-properties-common wget
RUN apt update && apt install -y \
automake build-essential cmake curl git gnupg \
lcov libssl-dev libtool lsb-release m4 openssl \
peg python3 python3-pip python3-venv \
software-properties-common wget

RUN apt update -y && apt upgrade -y
RUN apt upgrade -y

# Get LLVM, Clang
ARG LLVM_VERSION=17
Expand Down

0 comments on commit cac495a

Please sign in to comment.