Files
2021-10-14 14:41:38 +00:00

11 lines
174 B
Docker

FROM rust:latest
RUN apt update && apt upgrade -y
RUN apt install -y g++ libc6-dev make
RUN rustup default nightly
WORKDIR /app
CMD ["make", "hello_world_x86_64_docker"]