Skip to content
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.

Update dockerfile and fix timezone issue #857

Merged
merged 1 commit into from Jul 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -9,7 +9,7 @@ RUN \
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections && \
add-apt-repository -y ppa:webupd8team/java && \
apt-get update && \
apt-get install -y oracle-java8-installer=${JAVA_VERSION}~webupd8~0 --no-install-recommends && \
apt-get install -y oracle-java8-installer=${JAVA_VERSION}~webupd8~1 --no-install-recommends && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /var/cache/oracle-jdk8-installer

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/iota/iri/conf/Configuration.java
Expand Up @@ -38,7 +38,7 @@ public class Configuration {
public static final String TESTNET_MILESTONE_START_INDEX = "434525";
public static final String MAINNET_NUM_KEYS_IN_MILESTONE = "20";
public static final String TESTNET_NUM_KEYS_IN_MILESTONE = "22";
public static final String GLOBAL_SNAPSHOT_TIME = "1531155600";
public static final String GLOBAL_SNAPSHOT_TIME = "1531148400";
public static final String TESTNET_GLOBAL_SNAPSHOT_TIME = "1522306500";


Expand Down