Skip to content

Commit

Permalink
Fix docker build fail
Browse files Browse the repository at this point in the history
  • Loading branch information
hseok-oh committed Jan 10, 2025
1 parent d250f9a commit 0d28280
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions infra/docker/focal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ FROM ubuntu:20.04
# Install 'add-apt-repository'
RUN apt-get update && apt-get -qqy install software-properties-common

# Install tzdata without user input
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get -qqy install tzdata

# Build tool
RUN apt-get update && apt-get -qqy install build-essential cmake scons git lcov g++-arm-linux-gnueabihf g++-aarch64-linux-gnu

Expand Down
3 changes: 3 additions & 0 deletions infra/docker/jammy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ FROM ubuntu:jammy
# Install 'add-apt-repository'
RUN apt-get update && apt-get -qqy install software-properties-common

# Install tzdata without user input
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get -qqy install tzdata

# Build tool
RUN apt-get update && apt-get -qqy install build-essential cmake scons git lcov g++-arm-linux-gnueabihf g++-aarch64-linux-gnu

Expand Down
2 changes: 1 addition & 1 deletion infra/docker/noble/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN apt-get update && apt-get -qqy install libboost-all-dev libgflags-dev libgoo
# Additonal tools
RUN apt-get update && \
apt-get -qqy install doxygen graphviz wget zip unzip python3 python3-pip python3-venv python3-dev hdf5-tools curl
RUN python3 -m pip install yapf==0.40.2 pylint --break-system-packages
RUN python3 -m pip install yapf==0.40.2 pylint numpy flatbuffers --break-system-packages

# Install clang-format
RUN apt-get update && apt-get -qqy install clang-format-16
Expand Down

0 comments on commit 0d28280

Please sign in to comment.