Last active
October 29, 2017 10:43
-
-
Save vnnvanhuong/4fec86a5af592367a688e49e10809226 to your computer and use it in GitHub Desktop.
axonivy-engine-dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM vnnvanhuong/maven-oracle-jdk:8 | |
MAINTAINER Huong Nguyen vnnvanhuong@gmail.com | |
# Install wget, unzip | |
RUN apt-get update && \ | |
apt-get install -y --no-install-recommends \ | |
wget \ | |
unzip | |
# Download and extract Axon.ivy Engine | |
RUN wget https://download.axonivy.com/7.0.1/AxonIvyEngine7.0.1.56047_All_x64.zip -O AxonIvyEngine7.zip && \ | |
unzip AxonIvyEngine7.zip -d /opt/AxonIvyEngine7 && \ | |
rm -f AxonIvyEngine7.zip && \ | |
useradd -s /sbin/nologin axonivy && \ | |
chown -R axonivy:axonivy /opt/AxonIvyEngine7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment