install packages in docker file directly, modify PATH variable
Some checks failed
Continuous Releases / build (push) Failing after 13s

This commit is contained in:
Eau
2026-03-20 01:21:19 -05:00
parent 67c11118ed
commit a0efb11017
2 changed files with 3 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ ARG UBUNTU_VERSION=latest
FROM ubuntu:${UBUNTU_VERSION}
LABEL AUTHOR=Lauren
WORKDIR /opt/setup
RUN apt update
RUN apt update && apt install nodejs curl mingw-w64
COPY setup.sh /opt/setup/setup.sh
RUN bash /opt/setup/setup.sh
RUN bash /opt/setup/setup.sh
ENV PATH=$PATH:$HOME/.cargo/bin