1
0
Files
tincheck/Dockerfile
John Ahlroos c037b9d31d
Some checks failed
Build & Release / build-docker-image (push) Has been cancelled
Build & Release / deploy-to-production (push) Has been cancelled
Build & Release / build-application (push) Has been cancelled
Use JDK 21 with docker image
2025-02-16 20:13:16 +01:00

6 lines
179 B
Docker

FROM eclipse-temurin:21-jre-alpine
LABEL org.opencontainers.image.authors="john@devsoap.com"
COPY dist/ /app/
RUN chmod +x /app/bin/*
WORKDIR /app
ENTRYPOINT ["/app/bin/tincheck"]