Skip to content

Instantly share code, notes, and snippets.

@benbenbenbenbenben
Created February 24, 2020 18:42
Show Gist options
  • Save benbenbenbenbenben/035584b8af7e552af2748f8f4c4b15fc to your computer and use it in GitHub Desktop.
Save benbenbenbenbenben/035584b8af7e552af2748f8f4c4b15fc to your computer and use it in GitHub Desktop.
Dockefile for taiko
FROM node:lts
#USER node
RUN apt-get update && \
apt-get install -y git-all gconf-service libasound2 libatk1.0-0 \
libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 \
libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libglib2.0-0 libgtk-3-0 \
libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 \
libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 \
libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 \
ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release \
xdg-utils wget
ENV NPM_CONFIG_PREFIX=/home/node/.npm-global
USER node
RUN npm install -g taiko @getgauge/cli
RUN mkdir -p /home/node/app
COPY package.json /home/node/app/package.json
WORKDIR /home/node/app
RUN npm install
COPY ./src/** /home/node/app/src/
ENTRYPOINT [ "node", "src/index.js" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment