Files
documize-docker/Dockerfile
Luke Tainton c66ea2b365
Some checks failed
CI / ci (pull_request) Successful in 6s
Validate PR Title / validate (pull_request) Failing after 2s
Add initial configuration files and Docker setup for Documize
2026-01-04 21:11:40 +00:00

11 lines
470 B
Docker

FROM alpine:3.23
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
LABEL org.opencontainers.image.source="https://git.tainton.uk/repos/documize-docker"
ARG DOCUMIZE_VERSION=v5.14.0
ENV DOCUMIZEPORT=5001
RUN apk add --no-cache curl
WORKDIR /opt
RUN curl -L -o documize "https://github.com/documize/community/releases/download/${DOCUMIZE_VERSION}/documize-community-linux-amd64" && chmod 755 documize
ENTRYPOINT ["./documize -port ${DOCUMIZEPORT}"]
EXPOSE ${DOCUMIZEPORT}