statping/dev/Dockerfile-cypress

16 lines
374 B
Plaintext
Raw Normal View History

2018-08-19 23:51:56 +00:00
FROM cypress/browsers:chrome67
2019-04-20 03:50:19 +00:00
LABEL 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
2019-04-20 03:50:19 +00:00
RUN npm run test-docker