Renovate Bot
d8b82d063a
All checks were successful
continuous-integration/drone/push Build is passing
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | registry.fedoraproject.org/fedora-minimal | final | major | `37` -> `39` | --- This PR has been generated by [Renovate Bot](https://git.dotya.ml/dotya.ml/renovate-bot). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMDUuMSIsInVwZGF0ZWRJblZlciI6IjM1LjEwNS4xIiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcG1lbnQifQ==--> Co-authored-by: leo <wanderer@dotya.ml> Reviewed-on: #2 Co-authored-by: Renovate Bot <renovate-bot@git.dotya.ml> Co-committed-by: Renovate Bot <renovate-bot@git.dotya.ml>
38 lines
1.7 KiB
Docker
38 lines
1.7 KiB
Docker
# syntax=docker/dockerfile:1.3
|
|
FROM registry.fedoraproject.org/fedora-minimal:39
|
|
|
|
ARG BUILD_DATE
|
|
ARG VCS_REF
|
|
|
|
LABEL description="Container image based on fedora-minimal, hourly updated, serving as a base image for other projects"
|
|
|
|
# as per https://github.com/opencontainers/image-spec/blob/main/annotations.md,
|
|
# keep Label Schema labels for backward compatibility.
|
|
LABEL org.label-schema.build-date=$BUILD_DATE \
|
|
org.label-schema.vcs-url="https://git.dotya.ml/wanderer-containers/fedora-minimal.git" \
|
|
org.label-schema.vcs-ref=$VCS_REF \
|
|
org.label-schema.license=MIT \
|
|
org.opencontainers.image.description="fedora-minimal" \
|
|
org.opencontainers.image.description="Container image based on fedora-minimal, hourly updated, serving as a base image for other projects" \
|
|
org.opencontainers.image.created=$BUILD_DATE \
|
|
org.opencontainers.image.authors=wanderer \
|
|
org.opencontainers.image.url="https://git.dotya.ml/wanderer-containers/fedora-minimal.git" \
|
|
org.opencontainers.image.source="https://git.dotya.ml/wanderer-containers/fedora-minimal.git" \
|
|
org.opencontainers.image.revision=$VCS_REF \
|
|
org.opencontainers.image.licenses=MIT
|
|
|
|
# DL3041 warning: Specify version with `dnf install -y <package>-<version>`.
|
|
# hadolint ignore=DL3041
|
|
RUN microdnf --refresh upgrade -y && \
|
|
microdnf install -y --nodocs --setopt install_weak_deps=0 \
|
|
findutils \
|
|
&& microdnf clean all -y; \
|
|
\
|
|
rm -rf /usr/share/zoneinfo/*; rm -rf /usr/include/*; \
|
|
find /. -name "*~" -type f -delete > /dev/null 2>&1; \
|
|
find /usr/share/terminfo/. -type f -delete \
|
|
! -name "*xterm*" ! -name "*screen*" ! -name "*screen*"
|
|
WORKDIR /
|
|
|
|
# vim: ft=dockerfile
|