haveno/desktop/package/linux/Dockerfile

21 lines
469 B
Docker
Raw Normal View History

2021-05-05 02:20:01 +02: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 18:08:37 +02:00
ENV version 0.0.1-SNAPSHOT
2021-05-05 02:20:01 +02: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 bisq-$version.jar /root
# cd to the Dex directory and execute the jar.
#CMD cd ~/Dex && java -jar Dex.jar