mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-10-01 01:35:48 -04:00
21 lines
471 B
Docker
21 lines
471 B
Docker
###
|
|
#
|
|
# Quick dockerfile meant to help building.
|
|
# Missing:
|
|
# - crypto fixes to JDK
|
|
# - various paths in the build script
|
|
###
|
|
|
|
# pull base image
|
|
FROM openjdk:8-jdk
|
|
ENV version 0.0.1-SNAPSHOT
|
|
|
|
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
|
|
# cd to the Dex directory and execute the jar.
|
|
#CMD cd ~/Dex && java -jar Dex.jar
|