forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix glibc version mismatch between CI and Docker image by pinning bot…
…h to Ubuntu 20.04 (informalsystems#1002)
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 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
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,13 +1,13 @@ | ||
##################################################### | ||
#### Relayer image #### | ||
##################################################### | ||
FROM rust:slim | ||
FROM ubuntu:20.04 | ||
LABEL maintainer="[email protected]" | ||
|
||
ARG RELEASE | ||
|
||
# Add Python 3 | ||
RUN apt-get update -y && apt-get install python3 -y && apt-get install python3-toml -y | ||
RUN apt-get update -y && apt-get install python3 python3-toml -y | ||
|
||
# Copy relayer executable | ||
COPY ./hermes /usr/bin/hermes | ||
|