fix
Some checks failed
build-and-deploy / build (push) Successful in 22s
build-and-deploy / deploy (push) Failing after 15s

This commit is contained in:
2025-09-26 20:18:49 -06:00
parent 196fa3bc1c
commit 8bae7023ac
4 changed files with 21 additions and 11 deletions

View File

@@ -5,5 +5,13 @@ RUN apt-get update \
&& apt-get install -y --no-install-recommends freeradius-postgresql \
&& rm -rf /var/lib/apt/lists/*
# Default command preserved by base image
# Copy configuration overrides
COPY --chown=root:freerad clients.conf /etc/freeradius/clients.conf
COPY --chown=root:freerad mods-available/ /etc/freeradius/mods-available/
COPY --chown=root:freerad mods-enabled/ /etc/freeradius/mods-enabled/
COPY --chown=root:freerad sites-enabled/ /etc/freeradius/sites-enabled/
# Ensure world-readable configs
RUN chmod -R a+r /etc/freeradius
# Default command preserved by base image