15 lines
339 B
Text
15 lines
339 B
Text
|
|
FROM rust:1.50-slim
|
||
|
|
|
||
|
|
# RUN apk add --no-cache musl-dev binutils-arm-none-eabi
|
||
|
|
RUN apt-get update
|
||
|
|
RUN apt-get -y upgrade
|
||
|
|
RUN apt-get -y install binutils-arm-linux-gnueabihf musl-dev
|
||
|
|
RUN apt-get clean
|
||
|
|
RUN rm -rf /var/lib/apt/lists/*
|
||
|
|
RUN rustup target add armv7-unknown-linux-musleabihf
|
||
|
|
|
||
|
|
#WORKDIR /usr/src/s0_meter
|
||
|
|
#COPY . .
|
||
|
|
|
||
|
|
#RUN cargo test
|