Skip to content

Commit d620b47

Browse files
committed
Update Dockerfile to use rust base image
Since debian doesn't ship rustc >= 1.85 yet Signed-off-by: Lee Smet <lee.smet@hotmail.com>
1 parent 44a22b1 commit d620b47

1 file changed

Lines changed: 1 addition & 10 deletions

File tree

Dockerfile

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
FROM debian:latest AS build
2-
3-
# TODO: Add nonnteractive flag for apt
4-
5-
# Upgrade system
6-
RUN apt update
7-
RUN apt upgrade -y
8-
9-
# Install build dependencies
10-
RUN apt install rustc -y
1+
FROM rust:latest AS build
112

123
# Copy across data
134
RUN mkdir /src

0 commit comments

Comments
 (0)