Skip to content

Instantly share code, notes, and snippets.

@fazliraziq
Created September 11, 2021 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fazliraziq/26d0fa7a9acfa558ff5f37f34f06a329 to your computer and use it in GitHub Desktop.
Save fazliraziq/26d0fa7a9acfa558ff5f37f34f06a329 to your computer and use it in GitHub Desktop.
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/cli@10.2
EXPOSE 4200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment