1
0
Files
tincheck/Dockerfile
John Ahlroos c451e5579a
All checks were successful
Build & Release / build-application (push) Successful in 2m14s
Build & Release / build-docker-image (push) Successful in 37s
Build & Release / deploy-to-production (push) Successful in 3s
Fix executable name
2025-02-15 20:07:48 +01:00

6 lines
171 B
Docker

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