From 10bfcf07273b46b536f7963083427796fcaf13d0 Mon Sep 17 00:00:00 2001 From: opti1337 Date: Mon, 22 Dec 2025 22:14:24 +0600 Subject: [PATCH] Update Dockerfile.windows --- client/Dockerfile.windows | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/client/Dockerfile.windows b/client/Dockerfile.windows index c1ff713..b867b19 100644 --- a/client/Dockerfile.windows +++ b/client/Dockerfile.windows @@ -1,15 +1,17 @@ -FROM ubuntu:latest +FROM node:lts + +# SHELL ["/bin/bash", "-c"] WORKDIR /app -RUN apt update +# RUN apt update +# +# RUN apt install -y curl unzip -RUN apt install -y curl unzip +# RUN curl -fsSL https://fnm.vercel.app/install | bash -RUN curl -o- https://fnm.vercel.app/install | bash - -RUN ~/.local/share/fnm/fnm install 24 -RUN ~/.local/share/fnm/fnm use 24 +# RUN ~/.local/share/fnm/fnm install 24 +# RUN ~/.local/share/fnm/fnm use 24 RUN corepack enable yarn RUN yarn set version stable