From 8c365e27732ccbde831b42dc4f6aa4ea7614a9ea Mon Sep 17 00:00:00 2001 From: Jordan Doyle Date: Mon, 15 Jan 2024 01:00:21 +0000 Subject: [PATCH] Fix docker build --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 903e5ad..a89d7d6 100644 --- a/Dockerfile +++ a/Dockerfile @@ -1,6 +1,7 @@ FROM rust:1.71-slim AS builder -RUN apt-get update && apt-get install -y libssl-dev pkg-config +RUN rustup component add rustfmt +RUN apt-get update && apt-get install -y libssl-dev pkg-config clang COPY . /sources WORKDIR /sources -- rgit 0.1.3