Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/router.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM scratch AS router_pkg
FROM scratch AS config

FROM rust:1.91.1-slim-bookworm AS build
FROM rust:1.93.0-slim-bookworm AS build

# Required by Apollo Router
RUN apt-get update
Expand Down Expand Up @@ -40,9 +40,9 @@
RUN apt-get -y install ca-certificates
RUN rm -rf /var/lib/apt/lists/*

LABEL org.opencontainers.image.title=$IMAGE_TITLE

Check warning on line 43 in docker/router.dockerfile

View workflow job for this annotation

GitHub Actions / image-build / dockerize (linux/arm64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$IMAGE_TITLE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 43 in docker/router.dockerfile

View workflow job for this annotation

GitHub Actions / image-build / dockerize (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$IMAGE_TITLE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.version=$RELEASE

Check warning on line 44 in docker/router.dockerfile

View workflow job for this annotation

GitHub Actions / image-build / dockerize (linux/arm64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$RELEASE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 44 in docker/router.dockerfile

View workflow job for this annotation

GitHub Actions / image-build / dockerize (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$RELEASE' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.description=$IMAGE_DESCRIPTION

Check warning on line 45 in docker/router.dockerfile

View workflow job for this annotation

GitHub Actions / image-build / dockerize (linux/arm64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$IMAGE_DESCRIPTION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 45 in docker/router.dockerfile

View workflow job for this annotation

GitHub Actions / image-build / dockerize (linux/amd64)

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$IMAGE_DESCRIPTION' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
LABEL org.opencontainers.image.authors="The Guild"
LABEL org.opencontainers.image.vendor="Kamil Kisiela"
LABEL org.opencontainers.image.url="https://github.com/graphql-hive/console"
Expand Down
Loading