Commit
All checks were successful
build docker image / docker-build (push) Successful in 55s

This commit is contained in:
2025-01-12 16:02:26 +02:00
parent 3a08c2a0b2
commit 79df0ea4b9

View File

@ -2,23 +2,25 @@ FROM golang:1.23.4 AS builder
WORKDIR /app WORKDIR /app
COPY . . COPY go.mod go.sum ./
RUN go mod download && go mod verify RUN go mod download && go mod verify
# Copy project files
COPY . .
# Build
RUN make RUN make
FROM alpine:3.7 # Final stage
FROM chromedp/headless-shell:latest
WORKDIR /app
# Copy the binary and required files # Copy the binary and required files
COPY --from=builder /app/docker-ldap-change-password-web-ui /app/docker-ldap-change-password-web-ui COPY --from=builder /app/docker-ldap-change-password-web-ui /app/docker-ldap-change-password-web-ui
RUN chmod +x /app/docker-ldap-change-password-web-ui
ADD static /app/static ADD static /app/static
ADD templates /app/templates ADD templates /app/templates
EXPOSE 8080 # Set working directory
WORKDIR /app
ENTRYPOINT [ "docker-ldap-change-password-web-ui" ] ENTRYPOINT ["/app/docker-ldap-change-password-web-ui"]