Skip to content
Snippets Groups Projects
Commit f74a0901 authored by Simon Künzel's avatar Simon Künzel
Browse files

fixup! Add package caching for CI

parent 6cce2c4e
No related branches found
No related tags found
No related merge requests found
Pipeline #7314 failed
Pipeline: backend

#7315

    ...@@ -4,7 +4,8 @@ FROM python:3.13-slim AS base ...@@ -4,7 +4,8 @@ FROM python:3.13-slim AS base
    ARG PIP_CACHE_DIR= ARG PIP_CACHE_DIR=
    ARG APT_CACHE_DIR= ARG APT_CACHE_DIR=
    RUN rm -f /etc/apt/apt.conf.d/docker-clean RUN rm -f /etc/apt/apt.conf.d/docker-clean
    RUN if ! [ -z "$APT_CACHE_DIR" ]; then echo "Dir::Cache::Archives $APT_CACHE_DIR" > /etc/apt/apt.conf.d/ci_caching; fi RUN if ! [ -z "$APT_CACHE_DIR" ]; then echo "Dir::Cache::Archives '$APT_CACHE_DIR'" > /etc/apt/apt.conf.d/ci_caching; fi
    RUN cat /etc/apt/apt.conf.d/ci_caching
    WORKDIR /code WORKDIR /code
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment