docker already installed in ci
All checks were successful
Build and Push / build_and_publish_docker_image (push) Successful in 15m18s

This commit is contained in:
Mitchell Marino 2026-05-22 15:34:56 -05:00
parent b93d6ea455
commit c01dea14e7
2 changed files with 8 additions and 8 deletions

View File

@ -13,8 +13,8 @@ jobs:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install Docker # - name: Install Docker
run: curl -fsSL https://get.docker.com | sh # run: curl -fsSL https://get.docker.com | sh
- name: Login to Docker Registry - name: Login to Docker Registry
uses: https://github.com/docker/login-action@v3 uses: https://github.com/docker/login-action@v3

View File

@ -13,12 +13,12 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
# Install Docker # Install Docker
# RUN curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg && \ RUN curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg && \
# echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null && \ echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null && \
# apt-get update && \ apt-get update && \
# apt-get install -y docker-ce docker-ce-cli containerd.io && \ apt-get install -y docker-ce docker-ce-cli containerd.io && \
# apt-get clean && \ apt-get clean && \
# rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
# Install Rust # Install Rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y