mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
16 lines
290 B
Docker
16 lines
290 B
Docker
FROM node:8
|
|
# update npm
|
|
RUN npm install -g npm@5
|
|
|
|
# install dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
netcat \
|
|
libpq5 \
|
|
libgtk2.0-0 \
|
|
libnotify-dev \
|
|
libgconf-2-4 \
|
|
libnss3 \
|
|
libxss1 \
|
|
libasound2 \
|
|
xvfb \
|
|
&& rm -rf /var/lib/apt/lists/* |