mirror of
https://github.com/thegeeklab/wait-for.git
synced 2024-11-22 12:20:39 +00:00
12 lines
151 B
Docker
12 lines
151 B
Docker
|
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
|