Skip to content

Commit

Permalink
Added basic dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianBihl committed Oct 29, 2023
1 parent 225f7dc commit 08af5a6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
FROM debian:latest

# avoid config interfaces
ARG DEBIAN_FRONTEND=noninteractive

# initial update and upgrade
RUN apt-get update && apt-get upgrade -y

#--------------------------------------------------
# build tools & base dependencies
#--------------------------------------------------
RUN apt-get update && apt-get install --install-recommends -y \
clang-format \
clang-tidy \
gcc \
g++ \
gcc-arm-linux-gnueabihf \
g++-arm-linux-gnueabihf \
cmake \
make

0 comments on commit 08af5a6

Please sign in to comment.