Skip to content

Commit 4daf1a3

Browse files
Revert "Ensure all docker images run update from base image"
This reverts commit dc5979f.
1 parent dc5979f commit 4daf1a3

12 files changed

Lines changed: 0 additions & 23 deletions

File tree

backend/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ RUN uv sync --package acidwatch-api --extra pg --frozen --no-dev --no-editable
1010

1111
FROM python:3.13-slim
1212

13-
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
14-
1513
COPY --from=build /app/.venv /app/.venv
1614
COPY backend/alembic /app/backend/alembic
1715
COPY backend/alembic.ini backend/entrypoint /app/backend/

backend/Dockerfile.local

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
FROM python:3.12-slim
22

3-
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
4-
53
ENV UV_NO_CACHE=1
64
ENV UV_DYNAMIC_VERSIONING_BYPASS=0.1.0
75
ENV PYTHONDONTWRITEBYTECODE 1

frontend/Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ RUN npm install
99
RUN npm run build
1010

1111
FROM docker.io/nginxinc/nginx-unprivileged
12-
13-
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
14-
1512
WORKDIR /app
1613
COPY --from=builder /app/dist ./www
1714
COPY nginx-conf/nginx.conf /etc/nginx/conf.d/default.conf

frontend/Dockerfile.local

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
FROM docker.io/library/node:22-bookworm-slim
22

3-
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
4-
53
WORKDIR /app
64

75
COPY package*.json ./

workers/arcs-exp/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ RUN uv sync --project workers/arcs-exp --frozen --no-dev --no-editable
1414

1515
FROM python:3.13-slim
1616

17-
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
18-
1917
COPY --from=build /app/.venv /app/.venv
2018

2119
ENV PATH="/app/.venv/bin:$PATH"

workers/arcs/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ RUN uv sync --project workers/arcs --frozen --no-dev --no-editable
2020

2121
FROM python:3.13-slim
2222

23-
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
24-
2523
COPY --from=build /app/.venv /app/.venv
2624

2725
# the bin and model folders are not included when installing arcs, so even though we added

workers/example/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ RUN uv sync --project workers/example --frozen --no-dev --no-editable
1111

1212
FROM python:3.13-slim
1313

14-
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
15-
1614
COPY --from=build /app/.venv /app/.venv
1715

1816
ENV PATH="/app/.venv/bin:$PATH"

workers/gibbs-minimization/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ RUN uv sync --project workers/gibbs-minimization --frozen --no-dev --no-editable
1212
FROM python:3.13-slim
1313

1414
RUN apt-get update && \
15-
apt-get upgrade -y && \
1615
apt-get install -y --no-install-recommends openjdk-21-jre-headless && \
1716
rm -rf /var/lib/apt/lists/*
1817

workers/phpitz-reactive/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ RUN uv sync --project workers/phpitz-reactive --frozen --no-dev --no-editable
1111

1212
FROM python:3.13-slim
1313

14-
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
15-
1614
COPY --from=build /app/.venv /app/.venv
1715

1816
ENV PATH="/app/.venv/bin:$PATH"

workers/phpitz-solubility/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ RUN uv sync --project workers/phpitz-solubility --frozen --no-dev --no-editable
1111

1212
FROM python:3.13-slim
1313

14-
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
15-
1614
COPY --from=build /app/.venv /app/.venv
1715

1816
ENV PATH="/app/.venv/bin:$PATH"

0 commit comments

Comments
 (0)