diff --git a/windows.Dockerfile b/windows.Dockerfile index 8ab050f..050c6bf 100644 --- a/windows.Dockerfile +++ b/windows.Dockerfile @@ -5,20 +5,21 @@ FROM mcr.microsoft.com/powershell as tailwindcss-builder SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';$ProgressPreference='silentlyContinue';"] -RUN Invoke-WebRequest -OutFile nvm-noinstall.zip -UseBasicParsing -Uri "https://github.com/coreybutler/nvm-windows/releases/latest/download/nvm-noinstall.zip" -RUN Expand-Archive -DestinationPath C:\ nvm-noinstall.zip +#RUN Invoke-WebRequest -OutFile nvm-noinstall.zip -UseBasicParsing -Uri "https://github.com/coreybutler/nvm-windows/releases/latest/download/nvm-noinstall.zip" +#RUN Expand-Archive -DestinationPath C:\ nvm-noinstall.zip #RUN Rename-Item C:\node-v20.17.0-x64 C:\nodejs #RUN SETX PATH C:\nodejs #RUN msiexec.exe /q /i nodejs.msi -RUN C:\nvm.exe install 20.17.0 -RUN C:\nvm.exe use 20.17.0 + +#RUN C:\nvm.exe install 20.17.0 +#RUN C:\nvm.exe use 20.17.0 WORKDIR /app COPY package.json package-lock.json ./ # Install tailwindcss modules -RUN npm install -D tailwindcss -RUN npx tailwindcss init +#RUN npm install -D tailwindcss +#RUN npx tailwindcss init # Now let's use a build env with Rust for the app FROM mcr.microsoft.com/devcontainers/rust:dev-1 as builder