Base the docker image on debian stretch to get more recent mesa3d
This commit is contained in:
parent
4125ad1c8f
commit
9fd7dc1d35
1 changed files with 7 additions and 2 deletions
|
@ -1,9 +1,14 @@
|
||||||
FROM node:5.7.1
|
FROM debian:stretch
|
||||||
MAINTAINER Petr Sloup <petr.sloup@klokantech.com>
|
MAINTAINER Petr Sloup <petr.sloup@klokantech.com>
|
||||||
|
|
||||||
RUN apt-get -qq update \
|
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 \
|
xvfb \
|
||||||
|
&& curl -sL https://deb.nodesource.com/setup_5.x | bash - \
|
||||||
|
&& apt-get -y install nodejs \
|
||||||
&& apt-get clean
|
&& apt-get clean
|
||||||
|
|
||||||
RUN mkdir -p /usr/src/app
|
RUN mkdir -p /usr/src/app
|
||||||
|
|
Loading…
Reference in a new issue