Update dockerfile (#104)

This commit is contained in:
Lee *!* Clagett 2024-04-16 21:51:14 -04:00 committed by GitHub
parent de81618f39
commit 70ac24a011
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ cmake_minimum_required(VERSION 3.1.0)
project(monero-lws) project(monero-lws)
enable_language(CXX) enable_language(CXX)
set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(MONERO_LIBRARIES set(MONERO_LIBRARIES

View file

@ -1,8 +1,8 @@
# Initial base from https://github.com/sethforprivacy/monero-lws/blob/588c7f1965d3afbda8a65dc870645650e063e897/Dockerfile # Initial base from https://github.com/sethforprivacy/monero-lws/blob/588c7f1965d3afbda8a65dc870645650e063e897/Dockerfile
# Set monerod version to install from github # Set monerod version to install from github
ARG MONERO_BRANCH=v0.18.2.2 ARG MONERO_BRANCH=v0.18.3.3
ARG MONERO_COMMIT_HASH=e06129bb4d1076f4f2cebabddcee09f1e9e30dcc ARG MONERO_COMMIT_HASH=81d4db08eb75ce5392c65ca6571e7b08e41b7c95
# Select ubuntu:20.04 for the build image base # Select ubuntu:20.04 for the build image base
FROM ubuntu:20.04 as build FROM ubuntu:20.04 as build