11 lines
362 B
Docker
11 lines
362 B
Docker
FROM python:3.6.6
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
RUN pip install pipenv
|
|
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash
|
|
RUN apt-get install nodejs -y
|
|
RUN apt-get install xvfb libgtk2.0-0 libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 -y
|
|
RUN apt-get install postgresql postgresql-contrib -y
|
|
RUN npm install cypress
|
|
RUN /node_modules/.bin/cypress install
|