Skip to content
Snippets Groups Projects
Dockerfile 418 B
Newer Older
François Agneray's avatar
François Agneray committed
FROM node:11

François Agneray's avatar
François Agneray committed
RUN yarn global add @angular/cli
RUN ng config -g cli.packageManager yarn
François Agneray's avatar
François Agneray committed

# Chrome
RUN echo 'deb http://dl.google.com/linux/chrome/deb/ stable main' > /etc/apt/sources.list.d/chrome.list
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN apt-get update \
    && apt-get install -y google-chrome-stable
# ENV CHROME_BIN /usr/bin/google-chrome

François Agneray's avatar
François Agneray committed
CMD ["bash"]