Skip to content

Commit 01e3c00

Browse files
committed
Fix container release builds
1 parent 14a9fd0 commit 01e3c00

5 files changed

Lines changed: 10 additions & 5 deletions

File tree

Containerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ RUN apt-get update \
1515
COPY Cargo.toml Cargo.lock rust-toolchain.toml ./
1616
COPY build.rs ./
1717
COPY vendor ./vendor
18+
COPY packaging/systemd ./packaging/systemd
1819
COPY src ./src
19-
COPY scripts/validate-features.sh ./scripts/validate-features.sh
20+
COPY scripts/validate-features.sh scripts/feature-policy.sh ./scripts/
2021

2122
ARG FLUXHEIM_FEATURES=profile-core,acme-client
2223
RUN if [ "${FLUXHEIM_FEATURES}" = "default" ]; then \

containers/Containerfile.alpine

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ RUN apk add --no-cache build-base cmake perl pkgconf \
1111
COPY Cargo.toml Cargo.lock rust-toolchain.toml ./
1212
COPY build.rs ./
1313
COPY vendor ./vendor
14+
COPY packaging/systemd ./packaging/systemd
1415
COPY src ./src
15-
COPY scripts/validate-features.sh ./scripts/validate-features.sh
16+
COPY scripts/validate-features.sh scripts/feature-policy.sh ./scripts/
1617

1718
ARG FLUXHEIM_FEATURES=profile-core,acme-client
1819
RUN if [ "${FLUXHEIM_FEATURES}" = "default" ]; then \

containers/Containerfile.debian

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ RUN apt-get update \
1515
COPY Cargo.toml Cargo.lock rust-toolchain.toml ./
1616
COPY build.rs ./
1717
COPY vendor ./vendor
18+
COPY packaging/systemd ./packaging/systemd
1819
COPY src ./src
19-
COPY scripts/validate-features.sh ./scripts/validate-features.sh
20+
COPY scripts/validate-features.sh scripts/feature-policy.sh ./scripts/
2021

2122
ARG FLUXHEIM_FEATURES=profile-core,acme-client
2223
RUN if [ "${FLUXHEIM_FEATURES}" = "default" ]; then \

containers/Containerfile.suse-micro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ RUN apk add --no-cache build-base cmake perl pkgconf \
1111
COPY Cargo.toml Cargo.lock rust-toolchain.toml ./
1212
COPY build.rs ./
1313
COPY vendor ./vendor
14+
COPY packaging/systemd ./packaging/systemd
1415
COPY src ./src
15-
COPY scripts/validate-features.sh ./scripts/validate-features.sh
16+
COPY scripts/validate-features.sh scripts/feature-policy.sh ./scripts/
1617

1718
ARG FLUXHEIM_FEATURES=profile-core,acme-client
1819
RUN if [ "${FLUXHEIM_FEATURES}" = "default" ]; then \

containers/Containerfile.wolfi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ RUN apk add --no-cache build-base cmake perl pkgconf \
1111
COPY Cargo.toml Cargo.lock rust-toolchain.toml ./
1212
COPY build.rs ./
1313
COPY vendor ./vendor
14+
COPY packaging/systemd ./packaging/systemd
1415
COPY src ./src
15-
COPY scripts/validate-features.sh ./scripts/validate-features.sh
16+
COPY scripts/validate-features.sh scripts/feature-policy.sh ./scripts/
1617

1718
ARG FLUXHEIM_FEATURES=profile-core,acme-client
1819
RUN if [ "${FLUXHEIM_FEATURES}" = "default" ]; then \

0 commit comments

Comments
 (0)