forked from RT-Thread/rt-thread
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
46 lines (23 loc) · 891 Bytes
/
Dockerfile
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
36
37
38
39
40
41
42
43
FROM ubuntu:20.04
ARG DEST_DIR=/root
WORKDIR ${DEST_DIR}
#system
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y vim git wget python3 python-is-python3 pip gcc-arm-none-eabi scons libncurses5-dev
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y qemu-system-arm
#env
RUN mkdir /root/.env
RUN mkdir /root/.env/tools
RUN mkdir /root/.env/packages
RUN mkdir /root/.env/packages/packages
RUN mkdir /root/.env/tools/scripts
RUN touch /root/.env/packages/Kconfig
RUN echo 'source "$PKGS_DIR/packages/Kconfig"' > /root/.env/packages/Kconfig
RUN git clone https://github.com/RT-Thread/env.git /root/.env/tools/scripts/
RUN git clone https://github.com/RT-Thread/packages.git /root/.env/packages/packages/
ENV PATH="/root/.env/tools/scripts:$PATH"
RUN pip install requests psutil kconfiglib tqdm -qq
ENV RTT_EXEC_PATH=/usr/bin
ENV RTT_CC=gcc
WORKDIR /root