Last active
May 29, 2021 16:28
-
-
Save gridhead/7f765abd955c16eb9f6093606e34a8cf to your computer and use it in GitHub Desktop.
Lavagna v1.1.7 on CentOS
This file contains hidden or 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 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