Skip to content

Commit

Permalink
Update cross compile docker image (#303)
Browse files Browse the repository at this point in the history
* Update cross compile docker image

* Fix compile
  • Loading branch information
AurevoirXavier authored Feb 27, 2023
1 parent 5356f0b commit b2b0305
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
apt update -y
apt install --no-install-recommends -y \
ca-certificates curl git python3-pip \
clang make gcc g++ protobuf-compiler
clang make gcc g++ libssl-dev pkg-config protobuf-compiler
pip3 install --upgrade pip
pip3 install cmake --upgrade
Expand Down
4 changes: 3 additions & 1 deletion .maintain/docker/ubuntu:20.04
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
FROM ubuntu:20.04

RUN apt-get -y update && apt-get -y install clang gcc g++ llvm libssl-dev libudev-dev make git protobuf-compiler
ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=Etc/UTC
RUN apt-get -y update && apt-get -y install clang gcc g++ llvm libssl-dev libudev-dev make git pkg-config protobuf-compiler

0 comments on commit b2b0305

Please sign in to comment.