inception / Dockerfile
thak123's picture
Update Dockerfile
4413658 verified
raw
history blame contribute delete
427 Bytes
# Use a base image with Java installed
FROM openjdk:11-jre-slim
# Set environment variables for INCEpTION
ENV INCEPTION_VERSION=34.1
# Download and set up INCEpTION
RUN wget https://github.com/inception-project/inception/releases/download/$INCEPTION_VERSION/inception-app-standalone-$INCEPTION_VERSION.jar -O inception.jar
# Expose INCEpTION's default port
EXPOSE 8080
# Run INCEpTION
CMD ["java", "-jar", "inception.jar"]