renamed dockerfile.test as ignore file conflicts

pull/3/head
josebarn 8 years ago
parent 8f2f426ad7
commit a249c33bc6

@ -12,7 +12,7 @@ services:
sut:
build:
context: .
dockerfile: ./docker/Dockerfile.test
dockerfile: ./docker/Dockerfile.sut
links:
- "app:target"
depends_on:

@ -0,0 +1,12 @@
FROM alpine:latest
RUN apk add --update curl && \
rm -rf /var/cache/apk/*
WORKDIR /app
ENV SUT_TARGET undefined
ADD script/container-integ-test.sh /app/test.sh
CMD ["sh", "test.sh"]
Loading…
Cancel
Save