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>
This commit is contained in:
Lee Smet
2026-04-21 15:36:06 +02:00
parent 44a22b1b37
commit d620b476ef
+1 -10
View File
@@ -1,13 +1,4 @@
FROM debian:latest AS build
# TODO: Add nonnteractive flag for apt
# Upgrade system
RUN apt update
RUN apt upgrade -y
# Install build dependencies
RUN apt install rustc -y
FROM rust:latest AS build
# Copy across data
RUN mkdir /src