diff --git a/Dockerfile b/Dockerfile index bf4dc2f..84641ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,14 @@ -FROM node:5.7.1 +FROM debian:stretch MAINTAINER Petr Sloup RUN apt-get -qq update \ -&& DEBIAN_FRONTEND=noninteractive apt-get -qq -y install \ +&& DEBIAN_FRONTEND=noninteractive apt-get -y install \ + curl \ + build-essential \ + python \ xvfb \ +&& curl -sL https://deb.nodesource.com/setup_5.x | bash - \ +&& apt-get -y install nodejs \ && apt-get clean RUN mkdir -p /usr/src/app