Skip to content

Instantly share code, notes, and snippets.

@vnnvanhuong
Last active October 29, 2017 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vnnvanhuong/4fec86a5af592367a688e49e10809226 to your computer and use it in GitHub Desktop.
Save vnnvanhuong/4fec86a5af592367a688e49e10809226 to your computer and use it in GitHub Desktop.
axonivy-engine-dockerfile
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