mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2025-12-31 13:37:54 -05:00
12 lines
252 B
Docker
12 lines
252 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']
|