2020-04-25 00:34:00 +00:00
|
|
|
FROM ubuntu:18.04 as build
|
|
|
|
|
|
|
|
RUN apt-get update && \
|
|
|
|
apt-get install -y \
|
|
|
|
binutils-mips-linux-gnu \
|
|
|
|
build-essential \
|
|
|
|
pkg-config \
|
|
|
|
python3 \
|
2020-05-04 16:11:37 +00:00
|
|
|
python3-pip \
|
2020-04-25 00:34:00 +00:00
|
|
|
wget \
|
2020-05-04 16:11:37 +00:00
|
|
|
git \
|
|
|
|
unzip \
|
|
|
|
clang-tidy \
|
2020-05-08 03:58:42 +00:00
|
|
|
clang-format \
|
2021-05-30 15:09:59 +00:00
|
|
|
clang-format-11 \
|
2020-07-04 12:34:51 +00:00
|
|
|
nano \
|
2021-05-30 15:09:59 +00:00
|
|
|
vbindiff \
|
|
|
|
libpng-dev
|
2020-04-25 00:34:00 +00:00
|
|
|
|
|
|
|
RUN python3 -m pip install --user colorama ansiwrap attrs watchdog python-Levenshtein
|
2020-05-04 16:11:37 +00:00
|
|
|
RUN python3 -m pip install --upgrade attrs pycparser
|
2020-04-25 00:34:00 +00:00
|
|
|
|
2020-07-04 12:34:51 +00:00
|
|
|
ENV LANG C.UTF-8
|
|
|
|
|
2020-04-25 00:34:00 +00:00
|
|
|
RUN mkdir /oot
|
|
|
|
WORKDIR /oot
|