s0-meter/Dockerfile

15 lines
339 B
Text
Raw Permalink Normal View History

2021-03-08 00:25:14 +01:00
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
2021-03-08 00:25:14 +01:00
#COPY . .
#RUN cargo test