-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* install newer version of rust ex_secp256k1 fails to compile on Rust 1.39.0 because of https://github.com/dalek-cryptography/subtle which works only on Rust 1.41 or higher. * do not install `libsecp256k1` packages * remove run_deps * install as part of utils * change the order of commands * bump alpine version for erlang * bump all alpines to 3.12 * fix python in deploy container
- Loading branch information
Showing
6 changed files
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.11 | ||
FROM alpine:3.12 | ||
|
||
LABEL maintainer="OmiseGO Team <[email protected]>" | ||
LABEL description="Builder image for OmiseGO elixir-omg" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.11 | ||
FROM alpine:3.12 | ||
|
||
LABEL maintainer="OmiseGO Team <[email protected]>" | ||
LABEL description="Thin Builder image for OmiseGO Childchain" | ||
|
@@ -22,8 +22,6 @@ ENV PATH=/usr/local/otp/bin:$PATH | |
ENV PATH=/usr/local/rebar3/bin:$PATH | ||
ENV PATH=/usr/local/elixir/bin:$PATH | ||
|
||
RUN apk add --no-cache rust=1.39.0-r0 cargo=1.39.0-r0 | ||
|
||
ENV HOME /home/${USER} | ||
ENV LANG=en_US.UTF-8 | ||
ENV LC_ALL=en_US.UTF-8 | ||
|
@@ -62,6 +60,7 @@ RUN set -xe \ | |
ca-certificates \ | ||
libressl-dev \ | ||
lksctp-tools \ | ||
&& apk add --no-cache rust=1.44.0-r0 cargo=1.44.0-r0 \ | ||
&& addgroup -g ${GID} ${GROUP} \ | ||
&& adduser -D -h ${HOME} -u ${UID} -G ${GROUP} -H ${USER} \ | ||
&& mkdir -p "${HOME}" \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.11 | ||
FROM alpine:3.12 | ||
|
||
LABEL maintainer="OmiseGO Team <[email protected]>" | ||
LABEL description="Deploy image for OmiseGO elixir-omg" | ||
|
@@ -19,7 +19,7 @@ ARG CLOUD_SDK_DOWNLOAD_SHA256="10e08362e750581c6ff3866314ed439a1bb544755657b204b | |
|
||
RUN set -xe \ | ||
&& apk add --update --no-cache --virtual .gcloud-runtime \ | ||
python \ | ||
python2 \ | ||
py-crcmod \ | ||
libc6-compat \ | ||
&& CLOUD_SDK_DOWNLOAD_URL="https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-${CLOUD_SDK_VERSION}-linux-x86_64.tar.gz" \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.11 | ||
FROM alpine:3.12 | ||
|
||
LABEL maintainer="OmiseGO Team <[email protected]>" | ||
LABEL description="Builder image for OmiseGO elixir-omg" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.11 | ||
FROM alpine:3.12 | ||
|
||
ARG GO_VERSION="1.13.8" | ||
#https://golang.org/dl/ | ||
|