diff --git a/core/Dockerfile b/core/Dockerfile index b69b759..e9dcd00 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -12,7 +12,7 @@ COPY composer.json composer.lock ./ RUN --mount=type=cache,target=/tmp/composer-cache \ COMPOSER_CACHE_DIR=/tmp/composer-cache COMPOSER_MAX_PARALLEL_HTTP=4 COMPOSER_IPRESOLVE=4 composer install --no-dev --no-interaction --no-progress --prefer-dist --no-scripts --classmap-authoritative -FROM node:26-alpine@sha256:233761595746769ebfdb6090f44fc7cdf818ae0ce62d2b37e0367723b9823e36 AS frontend-assets +FROM node:26-alpine@sha256:aadf416b2cdce311a8811ba3f0608a61b77dbf997500e2eafe781b51f6a0b019 AS frontend-assets WORKDIR /app diff --git a/docker/loki/Dockerfile b/docker/loki/Dockerfile index 5ce62cb..1c3d682 100644 --- a/docker/loki/Dockerfile +++ b/docker/loki/Dockerfile @@ -1,6 +1,6 @@ FROM busybox:1.38.0-musl@sha256:32b5cdad7cce41dfd53d0ae06baebcf8357a147ee7694dc706911c373bc30c37 AS healthcheck -FROM grafana/loki:3.7.4@sha256:87f0a067673756a3cede1bcbf0c74875f7df9b09fddb53e399d0c576f756cfcc +FROM grafana/loki:3.7.6@sha256:efd47c67f9bac88ca29bcf8cb997d9ab29d1848bd0aff579282295542a745952 ARG SOURCE_REVISION=development RELEASE_VERSION=development BUILD_DATE=1970-01-01T00:00:00Z LABEL org.opencontainers.image.source="https://github.com/vaheed/CDNFoundry" \ org.opencontainers.image.revision="${SOURCE_REVISION}" org.opencontainers.image.version="${RELEASE_VERSION}" \ diff --git a/edge-agent/Dockerfile b/edge-agent/Dockerfile index fe06810..f0df6e4 100644 --- a/edge-agent/Dockerfile +++ b/edge-agent/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.26-alpine@sha256:0178a641fbb4858c5f1b48e34bdaabe0350a330a1b1149aabd498d0699ff5fb2 AS build +FROM golang:1.26-alpine@sha256:3889b425f035be855a72fb4755265311293b6d414521f0a519d819df32222d83 AS build WORKDIR /src COPY go.mod ./ COPY . ./ diff --git a/edge-gateway/Dockerfile b/edge-gateway/Dockerfile index f5fa379..4331c0d 100644 --- a/edge-gateway/Dockerfile +++ b/edge-gateway/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.26-alpine@sha256:0178a641fbb4858c5f1b48e34bdaabe0350a330a1b1149aabd498d0699ff5fb2 AS build +FROM golang:1.26-alpine@sha256:3889b425f035be855a72fb4755265311293b6d414521f0a519d819df32222d83 AS build WORKDIR /src COPY go.mod main.go main_test.go scale_test.go ./ RUN CGO_ENABLED=0 go test ./... && CGO_ENABLED=0 go build -trimpath -ldflags="-s -w" -o /edge-gateway .