Skip to content

Commit 89ed5c3

Browse files
committed
fastest
1 parent 929dd31 commit 89ed5c3

File tree

20 files changed

+37
-37
lines changed

20 files changed

+37
-37
lines changed

packages/service-integration/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ LABEL maintainer=pcrespov
1212
# for docker apt caching to work this needs to be added: [https://vsupalov.com/buildkit-cache-mount-dockerfile/]
1313
RUN rm -f /etc/apt/apt.conf.d/docker-clean && \
1414
echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
15-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
15+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
1616
set -eux \
1717
&& apt-get update \
1818
&& apt-get install -y --no-install-recommends \
@@ -53,7 +53,7 @@ ENV PATH="${VIRTUAL_ENV}/bin:$PATH"
5353

5454
FROM base AS build
5555

56-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
56+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
5757
set -eux && \
5858
apt-get update \
5959
&& apt-get install -y --no-install-recommends \

requirements/tools/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ FROM python:${PYTHON_VERSION}-slim-bookworm AS base
1616

1717
ENV VIRTUAL_ENV=/home/scu/.venv
1818

19-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
19+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
2020
set -eux && \
2121
apt-get update \
2222
&& apt-get -y install --no-install-recommends\

services/agent/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ LABEL maintainer=GitHK
2020
# for docker apt caching to work this needs to be added: [https://vsupalov.com/buildkit-cache-mount-dockerfile/]
2121
RUN rm -f /etc/apt/apt.conf.d/docker-clean && \
2222
echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
23-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
23+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
2424
set -eux && \
2525
apt-get update && \
2626
apt-get install -y --no-install-recommends \
@@ -70,7 +70,7 @@ FROM base AS build
7070

7171
ENV SC_BUILD_TARGET=build
7272

73-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
73+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
7474
set -eux \
7575
&& apt-get update \
7676
&& apt-get install -y --no-install-recommends \

services/api-server/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ LABEL maintainer=pcrespov
1919
# for docker apt caching to work this needs to be added: [https://vsupalov.com/buildkit-cache-mount-dockerfile/]
2020
RUN rm -f /etc/apt/apt.conf.d/docker-clean && \
2121
echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
22-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
22+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
2323
set -eux && \
2424
apt-get update && \
2525
apt-get install -y --no-install-recommends \
@@ -67,7 +67,7 @@ FROM base AS build
6767

6868
ENV SC_BUILD_TARGET=build
6969

70-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
70+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
7171
set -eux \
7272
&& apt-get update \
7373
&& apt-get install -y --no-install-recommends \

services/autoscaling/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ENV DOCKER_APT_VERSION="5:26.1.4-1~debian.12~bookworm"
2323
# for docker apt caching to work this needs to be added: [https://vsupalov.com/buildkit-cache-mount-dockerfile/]
2424
RUN rm -f /etc/apt/apt.conf.d/docker-clean && \
2525
echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
26-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
26+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
2727
set -eux; \
2828
apt-get update; \
2929
apt-get install -y --no-install-recommends \
@@ -86,7 +86,7 @@ FROM base AS build
8686

8787
ENV SC_BUILD_TARGET=build
8888

89-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
89+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
9090
set -eux \
9191
&& apt-get update \
9292
&& apt-get install -y --no-install-recommends \

services/catalog/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ LABEL maintainer=pcrespov
2020
# for docker apt caching to work this needs to be added: [https://vsupalov.com/buildkit-cache-mount-dockerfile/]
2121
RUN rm -f /etc/apt/apt.conf.d/docker-clean && \
2222
echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
23-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
23+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
2424
set -eux && \
2525
apt-get update && \
2626
apt-get install -y --no-install-recommends \
@@ -68,7 +68,7 @@ FROM base AS build
6868

6969
ENV SC_BUILD_TARGET=build
7070

71-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
71+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
7272
set -eux \
7373
&& apt-get update \
7474
&& apt-get install -y --no-install-recommends \

services/clusters-keeper/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ENV DOCKER_APT_VERSION="5:26.1.4-1~debian.12~bookworm"
2323
# for docker apt caching to work this needs to be added: [https://vsupalov.com/buildkit-cache-mount-dockerfile/]
2424
RUN rm -f /etc/apt/apt.conf.d/docker-clean && \
2525
echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
26-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
26+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
2727
set -eux; \
2828
apt-get update; \
2929
apt-get install -y --no-install-recommends \
@@ -86,7 +86,7 @@ FROM base AS build
8686

8787
ENV SC_BUILD_TARGET=build
8888

89-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
89+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
9090
set -eux \
9191
&& apt-get update \
9292
&& apt-get install -y --no-install-recommends \

services/dask-sidecar/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ LABEL maintainer=sanderegg
2222
# for docker apt caching to work this needs to be added: [https://vsupalov.com/buildkit-cache-mount-dockerfile/]
2323
RUN rm -f /etc/apt/apt.conf.d/docker-clean && \
2424
echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
25-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
25+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
2626
set -eux \
2727
&& apt-get update \
2828
&& apt-get install -y --no-install-recommends \
@@ -78,7 +78,7 @@ FROM base AS build
7878

7979
ENV SC_BUILD_TARGET=build
8080

81-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
81+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
8282
set -eux \
8383
&& apt-get update \
8484
&& apt-get install -y --no-install-recommends \

services/datcore-adapter/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ LABEL maintainer=sanderegg
2020
# for docker apt caching to work this needs to be added: [https://vsupalov.com/buildkit-cache-mount-dockerfile/]
2121
RUN rm -f /etc/apt/apt.conf.d/docker-clean && \
2222
echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
23-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
23+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
2424
set -eux && \
2525
apt-get update && \
2626
apt-get install -y --no-install-recommends \
@@ -68,7 +68,7 @@ FROM base AS build
6868

6969
ENV SC_BUILD_TARGET=build
7070

71-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
71+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
7272
set -eux \
7373
&& apt-get update \
7474
&& apt-get install -y --no-install-recommends \

services/director-v2/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ LABEL maintainer=pcrespov
2020
# for docker apt caching to work this needs to be added: [https://vsupalov.com/buildkit-cache-mount-dockerfile/]
2121
RUN rm -f /etc/apt/apt.conf.d/docker-clean && \
2222
echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
23-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
23+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
2424
set -eux && \
2525
apt-get update && \
2626
apt-get install -y --no-install-recommends \
@@ -68,7 +68,7 @@ FROM base AS build
6868

6969
ENV SC_BUILD_TARGET=build
7070

71-
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
71+
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
7272
set -eux \
7373
&& apt-get update \
7474
&& apt-get install -y --no-install-recommends \

0 commit comments

Comments
 (0)