Skip to content

Commit

Permalink
fix(general): Bump alpine version and pin to fix missing upstream con…
Browse files Browse the repository at this point in the history
…tainers
  • Loading branch information
stevenj committed Sep 25, 2024
1 parent bc92706 commit 3ad1460
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion catalyst-gateway/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ all-hosts-build:
package-cat-gateway:
ARG tag="latest"

FROM alpine:3.19
FROM alpine:3.20.3
WORKDIR /cat-gateway

RUN apk add --no-cache gcc bash
Expand Down
4 changes: 2 additions & 2 deletions catalyst-gateway/tests/schemathesis_tests/Earthfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VERSION 0.8

package-schemathesis:
FROM python:3.12-alpine3.19
FROM python:3.12-alpine3.20
# TODO: https://github.com/input-output-hk/catalyst-voices/issues/465
RUN apk add --no-cache gcc musl-dev
RUN python -m pip install schemathesis==3.27.1
Expand Down Expand Up @@ -29,7 +29,7 @@ package-schemathesis:
# test-fuzzer-api - Fuzzy test cat-gateway using openapi specs.
# Disabled in CI, to enable it rename to `test-fuzzer-api`.
fuzzer-api:
FROM earthly/dind:alpine-3.19
FROM earthly/dind:alpine-alpine-3.20-docker-26.1.5-r0
RUN apk update && apk add iptables-legacy # workaround for https://github.com/earthly/earthly/issues/3784
RUN apk add yq zstd
COPY schemathesis-docker-compose.yml .
Expand Down
2 changes: 1 addition & 1 deletion catalyst_voices/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ build-web:
END

package:
FROM nginx:alpine3.18
FROM nginx:alpine3.20-slim
ARG tag='latest'

COPY +build-web/web /app
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ build-web:
SAVE ARTIFACT web

package-app:
FROM nginx:alpine3.18
FROM nginx:alpine3.20-slim
ARG tag='latest'
COPY +build-web/web /usr/share/nginx/html/
SAVE IMAGE test-app:$tag

nightly-test:
FROM earthly/dind:alpine-3.19
FROM earthly/alpine-3.20-docker-26.1.5-r0
COPY compose.yml .
WITH DOCKER \
--compose compose.yml \
Expand Down
2 changes: 1 addition & 1 deletion utilities/local-cluster/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ cluster-test:

# kubernetes-base : base container with tooling set up for local access
kubernetes-base:
FROM alpine:3.19
FROM alpine:3.20.3

# Install kubectl
RUN apk update && \
Expand Down

0 comments on commit 3ad1460

Please sign in to comment.