statping/dev/Dockerfile-cypress

15 lines
367 B
Plaintext
Raw Normal View History

2018-08-19 23:51:56 +00:00
FROM cypress/browsers:chrome67
MAINTAINER "Hunter Long (https://github.com/hunterlong)"
2018-12-04 05:57:11 +00:00
# Statping 'test' image for running a full test using the production environment
2018-08-19 23:51:56 +00:00
2018-12-04 05:57:11 +00:00
WORKDIR $HOME/statping
2018-08-19 23:51:56 +00:00
ADD dev/test .
RUN npm install node-sass
ENV SASS=node-sass
RUN npm install
2018-12-04 05:57:11 +00:00
ADD ./statping-linux-amd64 /usr/local/bin/statping
RUN statping version
2018-08-19 23:51:56 +00:00
RUN npm run test-docker