Initial commit

This commit is contained in:
2022-12-18 16:09:12 +00:00
commit 4b12a2b12a
5 changed files with 232 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM alpine:3.16
ARG version
ENV VERSION ${version}
ENV JAVA_HOME /usr/lib/jvm/java-8
RUN apk --no-cache add sudo \
&& apk --no-cache add wget \
&& apk --no-cache add openjdk8-jre
WORKDIR /app
VOLUME /app
COPY ./start.sh /app
COPY ./config.txt /app
RUN chmod +x /app/start.sh
ENTRYPOINT ["/bin/sh", "-c", "/app/start.sh"]