Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-10-05 12:10:58 -04:00
parent 32817f0a44
commit 56292b8573
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

10
mars/Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM java:8-alpine
RUN set -x \
&& apk add --no-cache --virtual .build-deps \
ca-certificates \
curl \
&& curl -sSL "http://courses.missouristate.edu/KenVollmar/mars/MARS_4_5_Aug2014/Mars4_5.jar" -o /mars.jar \
&& apk del .build-deps
ENTRYPOINT ["java", "-jar", "/mars.jar", "nc"]