mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-02-01 13:11:03 -05:00
12 lines
253 B
Docker
12 lines
253 B
Docker
FROM digitallyseamless/nodejs-bower-grunt:5
|
|
MAINTAINER jekkos
|
|
|
|
apt-get install curl
|
|
|
|
COPY Gruntfile.js .
|
|
COPY package.json .
|
|
COPY test .
|
|
RUN npm install
|
|
|
|
CMD ['while ! curl web/index.php | grep username; do sleep 1; done; && grunt mochaWebdriver:test']
|