-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.check
More file actions
35 lines (30 loc) · 865 Bytes
/
Dockerfile.check
File metadata and controls
35 lines (30 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#######################################################
# Dockerfile for the Beaglebone blue cross compilation
#######################################################
FROM ubuntu:24.04
RUN apt-get update -q && \
apt-get install -y -q \
gcc-arm-linux-gnueabihf \
g++-arm-linux-gnueabihf \
clang-format \
clang-tidy \
cppcheck \
python3 \
python3-pip \
cmake \
lcov \
gcc \
g++ \
build-essential \
make \
git \
libgoogle-glog-dev \
&& rm -rf /var/lib/apt/lists/*
ENV AS=/usr/bin/arm-linux-gnueabihf-as \
AR=/usr/bin/arm-linux-gnueabihf-ar \
CC=/usr/bin/arm-linux-gnueabihf-gcc \
CPP=/usr/bin/arm-linux-gnueabihf-cpp \
CXX=/usr/bin/arm-linux-gnueabihf-g++ \
LD=/usr/bin/arm-linux-gnueabihf-ld
RUN echo "alias ll='ls -alF --color=auto'" >> /etc/bash.bashrc
WORKDIR /workspace