Skip to content

Instantly share code, notes, and snippets.

@gridhead
Last active May 29, 2021 16:28
Show Gist options
  • Save gridhead/7f765abd955c16eb9f6093606e34a8cf to your computer and use it in GitHub Desktop.
Save gridhead/7f765abd955c16eb9f6093606e34a8cf to your computer and use it in GitHub Desktop.
Lavagna v1.1.7 on CentOS
FROM centos:latest
LABEL maintainer "Akashdeep Dhar <[email protected]>"
WORKDIR /data
RUN dnf update -y
RUN dnf install wget java-11-openjdk-headless unzip -y
RUN wget https://repo1.maven.org/maven2/io/lavagna/lavagna/1.1.7/lavagna-1.1.7-distribution.zip
RUN unzip lavagna-1.1.7-distribution.zip
RUN dnf remove wget unzip -y
RUN rm lavagna-1.1.7-distribution.zip
ENTRYPOINT ["./lavagna-1.1.7/bin/lavagna.sh"]
EXPOSE 8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment