haveno/desktop/package/linux/Dockerfile

21 lines
471 B
Text
Raw Normal View History

2021-05-05 00:20:01 +00:00
###
#
# Quick dockerfile meant to help building.
# Missing:
# - crypto fixes to JDK
# - various paths in the build script
###
# pull base image
FROM openjdk:8-jdk
2022-07-15 16:08:37 +00:00
ENV version 0.0.1-SNAPSHOT
2021-05-05 00:20:01 +00:00
RUN apt-get update && apt-get install -y --no-install-recommends openjfx && rm -rf /var/lib/apt/lists/* &&
apt-get install -y vim fakeroot
COPY 64bitBuild.sh /root
COPY haveno-$version.jar /root
2021-05-05 00:20:01 +00:00
# cd to the Dex directory and execute the jar.
#CMD cd ~/Dex && java -jar Dex.jar