8 lines
241 B
Docker
8 lines
241 B
Docker
ARG UBUNTU_VERSION=latest
|
|
FROM ubuntu:${UBUNTU_VERSION}
|
|
LABEL AUTHOR=Lauren
|
|
WORKDIR /opt/setup
|
|
RUN apt update && apt install nodejs curl mingw-w64
|
|
COPY setup.sh /opt/setup/setup.sh
|
|
RUN bash /opt/setup/setup.sh
|
|
ENV PATH=$PATH:$HOME/.cargo/bin |