gitlab-notification/bitbucket-app/Dockerfile
2020-10-31 03:48:19 +03:00

6 lines
226 B
Docker

FROM openjdk:8-jdk-alpine
MAINTAINER uPagge
RUN addgroup -S bitbucketbot && adduser -S bitbucketbot -G bitbucketbot
USER bitbucketbot:bitbucketbot
COPY target/bitbucketbot.jar app.jar
ENTRYPOINT ["java", "-jar", "", "app.jar"]