Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save aliprogrammer69/39c7f742afae728fbad86af9d290a7fb to your computer and use it in GitHub Desktop.

Select an option

Save aliprogrammer69/39c7f742afae728fbad86af9d290a7fb to your computer and use it in GitHub Desktop.
#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