Skip to content

Commit fc176b2

Browse files
committedJul 24, 2020
build(docker): update version of go,cmake,LibreSSL. And base image of pkg with mpi(for next version)
1 parent 443c000 commit fc176b2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## pkg with clang toolchain and cmake (pkg may use cc/cxx compiler and cmake tool).
22

3-
# docker build --rm=true -t genshen/pkg:0.2.0 .
3+
# docker build --rm=true -t genshen/pkg:0.4.1 .
44

5-
FROM golang:1.14.1-alpine3.11 AS builder
5+
FROM golang:1.14.6-alpine3.12 AS builder
66

77
MAINTAINER genshen genshenchu@gmail.com
88

@@ -24,12 +24,12 @@ RUN cd ${PROJECT_PATH} \
2424
## build cmake from source
2525
FROM genshen/clang-toolchain:10.0.0 AS cmake_builder
2626

27-
ARG OPENSSL_DOOWNLOOAD_URL="https://cdn.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.0.2.tar.gz"
27+
ARG OPENSSL_DOOWNLOOAD_URL="https://cdn.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.2.0.tar.gz"
2828

2929
# we need remove cmake help
30-
ARG CMAKE_DOWNLOAD_URL="https://cmake.org/files/v3.17/cmake-3.17.0.tar.gz"
30+
ARG CMAKE_DOWNLOAD_URL="https://cmake.org/files/v3.18/cmake-3.18.0.tar.gz"
3131
ARG CMAKE_INSATLL_PATH=/usr/local/cmake
32-
ARG CMAKE_HELP_PATH=share/cmake-3.17/Help
32+
ARG CMAKE_HELP_PATH=share/cmake-3.18/Help
3333

3434
# build libressl
3535
# wget is already install in alpine

‎Dockerfile-mpi

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## pkg with mpi env (and clang toolchain, cmake, make).
2-
## docker build --rm=true -t genshen/pkg:0.4.0-clang10-mpi .
2+
## docker build --rm=true -t genshen/pkg:0.4.1-clang10-mpi .
33

4-
FROM genshen/pkg:0.4.0
4+
FROM genshen/pkg:0.4.1
55

66
ARG USER=mpi
77
ENV USER_HOME="/home/${USER}" WORKDIR="/project" MPI_HOME=/usr/local/mpi-3.3.1

0 commit comments

Comments
 (0)
Please sign in to comment.