From 57b0e94061e14797d2f862da5045fcef3cec4609 Mon Sep 17 00:00:00 2001 From: Adrien Date: Fri, 12 Apr 2024 21:30:45 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20CPU=20constraints=20shall=20not?= =?UTF-8?q?=20be=20set=20in=20the=20Dockerfile,=20but=20by=20the=20CI=20jo?= =?UTF-8?q?b?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8d31add..d8ae571 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,8 +13,8 @@ COPY Cargo.* . COPY ./build.rs . COPY ./src ./src -RUN cargo install -j 1 dioxus-cli -RUN dx build -r --platform web -- -j 1 +RUN cargo install dioxus-cli +RUN dx build -r --platform web FROM nginx:mainline-alpine-slim