10 lines
260 B
Docker
10 lines
260 B
Docker
FROM git.plabble.org/maurice/devc-web-base:main
|
|
|
|
RUN apk add --no-cache \
|
|
dotnet9-sdk
|
|
|
|
COPY scripts/install-roslyn.sh /tmp/install-roslyn.sh
|
|
RUN chmod +x /tmp/install-roslyn.sh && /tmp/install-roslyn.sh
|
|
|
|
USER user
|
|
RUN dotnet tool install --global dotnet-ef |