From a98295e5b023d2d73424bc02d8a23664e4ac7a10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilien=20J=C3=A9gou?= Date: Tue, 22 Feb 2022 21:23:16 +0100 Subject: [PATCH] feat(docker): rust version 1.55.0 in Dockerfile Shaku can't compile in rust 1.56.+ ; track issue here: https://github.com/AzureMarker/shaku/issues/30 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e4d201d..915a648 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust +FROM rust:1.55.0 RUN mkdir -p /app WORKDIR /app