FROM codeberg.org/forgejo/forgejo:11-rootless # Copy your custom app.ini from the build context into a safe location not masked by EFS. COPY app.ini /defaults/app.ini # Copy the custom entrypoint script. COPY entrypoint.sh /entrypoint.sh # Set the custom entrypoint. ENTRYPOINT ["/entrypoint.sh"] # Optionally, retain a CMD if needed. CMD []