From 6a7bb14a262b272ee07ed932bc6e326a8e83bda4 Mon Sep 17 00:00:00 2001 From: KagChi <59391215+KagChi@users.noreply.github.com> Date: Thu, 27 Jun 2024 11:31:52 +0000 Subject: [PATCH] chore: update --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fe9f455..c8d2835 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ -FROM alpine:latest AS builder +FROM debian:latest AS builder ARG SIMD=1 # Step 1: Update and install dependencies -RUN apk update && apk upgrade && \ - apk add curl gcc g++ musl-dev cmake make +RUN apt-get update && \ + apt-get upgrade -y && \ + apt-get install -y curl gcc g++ cmake make # Step 2: Install Rust RUN curl -sSf https://sh.rustup.rs | sh -s -- --profile minimal --default-toolchain nightly -y