9 lines
291 B
Docker
9 lines
291 B
Docker
from mcr.microsoft.com/dotnet/sdk:6.0
|
|
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
|
|
&& apt install nodejs
|
|
|
|
RUN mkdir /just \
|
|
&& curl -L 'https://github.com/casey/just/releases/download/1.1.2/just-1.1.2-x86_64-unknown-linux-musl.tar.gz' | tar xvz -C /just
|
|
|
|
WORKDIR /srv
|