wait-for/Dockerfile

12 lines
151 B
Docker
Raw Normal View History

2017-05-03 10:52:29 +02:00
FROM node:alpine
RUN apk add --no-cache bash
RUN mkdir -p /app
WORKDIR /app
COPY . /app
RUN npm install
CMD ./node_modules/.bin/bats wait-for.bats