6 lines
226 B
Docker
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"]
|