cosmetic improve docker dockerfile
This commit is contained in:
parent
bdc794cf65
commit
112a2706a0
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
.idea/
|
||||||
|
target_lo/build/
|
28
Dockerfile
28
Dockerfile
@ -1,14 +1,26 @@
|
|||||||
FROM ubuntu:18.04
|
FROM ubuntu:18.04
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && \
|
||||||
make gcc-arm-none-eabi binutils-arm-none-eabi libnewlib-arm-none-eabi \
|
apt install -y --no-install-recommends \
|
||||||
autoconf automake libtool curl wget g++ unzip build-essential curl && \
|
make \
|
||||||
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
gcc-arm-none-eabi \
|
||||||
|
binutils-arm-none-eabi \
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
libnewlib-arm-none-eabi \
|
||||||
python python-pip libstdc++-arm-none-eabi-newlib && \
|
autoconf \
|
||||||
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
automake \
|
||||||
|
libtool \
|
||||||
|
curl \
|
||||||
|
wget \
|
||||||
|
g++ \
|
||||||
|
unzip \
|
||||||
|
build-essential \
|
||||||
|
python \
|
||||||
|
python-pip \
|
||||||
|
libstdc++-arm-none-eabi-newlib \
|
||||||
|
curl && \
|
||||||
|
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||||
|
|
||||||
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile=minimal --target thumbv7em-none-eabi thumbv7em-none-eabihf
|
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile=minimal --target thumbv7em-none-eabi thumbv7em-none-eabihf
|
||||||
|
|
||||||
ENV PATH="/root/.cargo/bin:${PATH}"
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
||||||
ENV USER=root
|
ENV USER=root
|
||||||
|
Loading…
Reference in New Issue
Block a user