Commit
Some checks failed
build docker image / docker-build (push) Failing after 18s

This commit is contained in:
2025-01-12 15:20:54 +02:00
parent c6083878a2
commit dc4f99e922
2 changed files with 5 additions and 5 deletions

View File

@ -2,11 +2,11 @@ FROM alpine:3.7
WORKDIR /app WORKDIR /app
ADD ldap-pass-webui /app/ldap-pass-webui ADD docker-ldap-change-password-web-ui /app/docker-ldap-change-password-web-ui
ADD static /app/static ADD static /app/static
ADD templates /app/templates ADD templates /app/templates
RUN chmod +x /app/ldap-pass-webui RUN chmod +x /app/docker-ldap-change-password-web-ui
EXPOSE 8080 EXPOSE 8080
ENTRYPOINT [ "/app/ldap-pass-webui" ] ENTRYPOINT [ "/app/docker-ldap-change-password-web-ui" ]

View File

@ -9,7 +9,7 @@ init:
dep ensure dep ensure
build: build:
GOOS=linux go build -o ldap-pass-webui main.go GOOS=linux go build -o docker-ldap-change-password-web-ui main.go
docker: docker:
@echo "Building docker image" @echo "Building docker image"
@ -21,4 +21,4 @@ push:
docker push ${REPO}:latest docker push ${REPO}:latest
clean: clean:
rm -rf ldap-pass-webui rm -rf docker-ldap-change-password-web-ui