From a9d8292a8318514d4b03923ad167708754e066a0 Mon Sep 17 00:00:00 2001 From: Vishal Pankaj Chandratreya <19171016+tfpf@users.noreply.github.com> Date: Sat, 17 Feb 2024 12:10:00 +0530 Subject: [PATCH] Updated `Dockerfile` as 32-bit Alpine does not have `rustup`. --- Cargo.toml | 2 +- Dockerfile | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 069f902e..d46c3cfa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "1.0.0" edition = "2021" [dev-dependencies] -criterion = "0.4" +criterion = "0.4.0" [[bench]] name = "benches" diff --git a/Dockerfile b/Dockerfile index 1dee113d..03505a97 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ FROM --platform=linux/i386 alpine:3.19 -RUN apk add cargo rustup -RUN rustup update +RUN apk add cargo WORKDIR /project-euler COPY . .