mirror of
https://github.com/hrfee/jfa-go.git
synced 2026-01-18 16:47:42 +01:00
removes one dependency. jfa-go-build-docker has been updated to reflect this, and in general with a newer debian version and properly included goreleaser, and a build for amd64. Dockerfiles now use a "distroless"-style container as their base. Was gonna use chainguard/glibc-dynamic, but it running as a different user meant it wouldn't read/write from your /data mount without manual intervention.
21 lines
793 B
Docker
21 lines
793 B
Docker
FROM --platform=$BUILDPLATFORM docker.io/hrfee/jfa-go-build-docker:latest AS support
|
|
ARG BUILT_BY
|
|
ENV JFA_GO_BUILT_BY=$BUILT_BY
|
|
|
|
COPY . /opt/build
|
|
|
|
RUN cd /opt/build; INTERNAL=off UPDATER=docker ./scripts/version.sh goreleaser build --snapshot --skip=validate --clean --id notray-e2ee
|
|
RUN mv /opt/build/dist/*_linux_arm_6 /opt/build/dist/placeholder_linux_arm
|
|
RUN sed -i 's#id="password_resets-watch_directory" placeholder="/config/jellyfin"#id="password_resets-watch_directory" value="/jf" disabled#g' /opt/build/build/data/html/setup.html
|
|
|
|
FROM gcr.io/distroless/base:latest AS final
|
|
ARG TARGETARCH
|
|
|
|
COPY --from=support /opt/build/dist/*_linux_${TARGETARCH}* /jfa-go
|
|
COPY --from=support /opt/build/build/data /jfa-go/data
|
|
|
|
EXPOSE 8056
|
|
EXPOSE 8057
|
|
|
|
CMD [ "/jfa-go/jfa-go", "-data", "/data" ]
|