mirror of
https://ghproxy.com/https://github.com/truecharts/charts.git
synced 2026-07-17 12:11:31 +08:00
18 lines
472 B
Docker
18 lines
472 B
Docker
ARG TARGETPLATFORM
|
|
ARG VERSION
|
|
# hadolint ignore=DL3007
|
|
FROM freeradius/freeradius-server:${VERSION}
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
# hadolint ignore=DL3008,DL3015,SC2086,SC2155
|
|
RUN \
|
|
rm /docker-entrypoint.sh && \
|
|
rm -Rf /etc/raddb
|
|
|
|
VOLUME /etc/raddb
|
|
COPY ./containers/apps/freeradius/entrypoint.sh /docker-entrypoint.sh
|
|
|
|
LABEL "maintainer"="TrueCharts <info@truecharts.org>"
|
|
LABEL "org.opencontainers.image.source"="https://github.com/truecharts/apps"
|