Created
September 11, 2021 10:36
-
-
Save fazliraziq/26d0fa7a9acfa558ff5f37f34f06a329 to your computer and use it in GitHub Desktop.
This file contains 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
FROM debian:stable | |
RUN groupadd --gid 1000 angular \ | |
&& useradd --uid 1000 --gid angular --shell /bin/bash --create-home angular \ | |
&& apt update && apt install curl -y | |
RUN curl -fsSL https://deb.nodesource.com/setup_12.x | bash - \ | |
&& apt-get install -y nodejs | |
RUN echo n | npm install -g --silent @angular/[email protected] | |
EXPOSE 4200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment