Created
January 24, 2021 16:04
-
-
Save aliprogrammer69/39c7f742afae728fbad86af9d290a7fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #This is just a base image that contains curl. you can use other images. | |
| FROM mcr.microsoft.com/dotnet/runtime:3.1-buster-slim AS base | |
| RUN curl --silent --location https://deb.nodesource.com/setup_10.x >> setup | |
| FROM mcr.microsoft.com/dotnet/aspnet:5.0-buster-slim AS final | |
| COPY --from=base setup setup | |
| RUN bash setup | |
| RUN apt-get install --yes nodejs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment