Skip to content

Commit

Permalink
Fix glibc version mismatch between CI and Docker image by pinning bot…
Browse files Browse the repository at this point in the history
…h to Ubuntu 20.04 (informalsystems#1002)
  • Loading branch information
romac authored May 27, 2021
1 parent 041ef64 commit 7c0418e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:

jobs:
test-end-to-end:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand Down
4 changes: 2 additions & 2 deletions ci/relayer.Dockerfile
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
Expand Down

0 comments on commit 7c0418e

Please sign in to comment.