Skip to content

Commit

Permalink
chore: fixing docker build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
MatisseB committed Jul 23, 2024
1 parent 24b48e6 commit 38d75c8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -----
FROM docker.io/library/rust:1.78-alpine as builder
FROM docker.io/library/rust:1.78-alpine AS builder

# Set `SYSROOT` to a dummy path (default is /usr) because pkg-config-rs *always*
# links those located in that path dynamically but we want static linking, c.f.
Expand All @@ -22,14 +22,14 @@ RUN cargo build --bin lgc --release
# -----
FROM cgr.dev/chainguard/wolfi-base:latest

LABEL org.opencontainers.image.title "LogCraft CLI"
LABEL org.opencontainers.image.authors "LogCraft <dev@logcraft.io>"
LABEL org.opencontainers.image.url "https://github.com/LogCraftIO/logcraft-cli/pkgs/container/logcraft-cli"
LABEL org.opencontainers.image.documentation "https://docs.logcraft.io/"
LABEL org.opencontainers.image.source "https://github.com/LogCraftIO/logcraft-cli"
LABEL org.opencontainers.image.vendor "LogCraft"
LABEL org.opencontainers.image.licenses "MPL-2.0"
LABEL org.opencontainers.image.description "Easily build Detection-as-Code pipelines for modern security tools (SIEM, EDR, XDR, ...)"
LABEL org.opencontainers.image.title="LogCraft CLI"
LABEL org.opencontainers.image.authors="LogCraft <dev@logcraft.io>"
LABEL org.opencontainers.image.url="https://github.com/LogCraftIO/logcraft-cli/pkgs/container/logcraft-cli"
LABEL org.opencontainers.image.documentation="https://docs.logcraft.io/"
LABEL org.opencontainers.image.source="https://github.com/LogCraftIO/logcraft-cli"
LABEL org.opencontainers.image.vendor="LogCraft"
LABEL org.opencontainers.image.licenses="MPL-2.0"
LABEL org.opencontainers.image.description="Easily build Detection-as-Code pipelines for modern security tools (SIEM, EDR, XDR, ...)"

WORKDIR /srv/workspace
RUN chown -R nonroot.nonroot /srv/workspace
Expand Down

0 comments on commit 38d75c8

Please sign in to comment.