Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix warnings when build images #282

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
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
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
# ------------------------------------------------------------------------------

# IMAGES used when running tests.
BLIXT_CONTROLPLANE_IMAGE ?= ghcr.io/kubernetes-sigs/blixt-controlplane
BLIXT_DATAPLANE_IMAGE ?= ghcr.io/kubernetes-sigs/blixt-dataplane
BLIXT_UDP_SERVER_IMAGE ?= ghcr.io/kubernetes-sigs/blixt-udp-test-server
REGISTRY ?= ghcr.io/kubernetes-sigs
BLIXT_CONTROLPLANE_IMAGE ?= $(REGISTRY)/blixt-controlplane
BLIXT_DATAPLANE_IMAGE ?= $(REGISTRY)/blixt-dataplane
BLIXT_UDP_SERVER_IMAGE ?= $(REGISTRY)/blixt-udp-test-server

# Dockerfile paths for each service
CONTROLPLANE_DOCKERFILE ?= build/Containerfile.controlplane
Expand Down
2 changes: 1 addition & 1 deletion build/Containerfile.dataplane
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.75-slim-bookworm as builder
FROM rust:1.75-slim-bookworm AS builder

ARG TARGETARCH

Expand Down
4 changes: 2 additions & 2 deletions build/Containerfile.udp_server
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust as builder
FROM rust AS builder

RUN apt-get update && \
apt-get install musl-tools -yq && \
Expand All @@ -25,7 +25,7 @@ RUN --mount=type=cache,target=/workspace/target/ \

FROM alpine

LABEL org.opencontainers.image.source https://github.com/kubernetes-sigs/blixt
LABEL org.opencontainers.image.source=https://github.com/kubernetes-sigs/blixt

WORKDIR /

Expand Down
2 changes: 1 addition & 1 deletion tools/performance/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine

LABEL org.opencontainers.image.source https://github.com/kubernetes-sigs/blixt
LABEL org.opencontainers.image.source=https://github.com/kubernetes-sigs/blixt

RUN apk --no-cache add iperf3

Expand Down
Loading