renamed dockerfile.test as ignore file conflicts
This commit is contained in:
@@ -12,7 +12,7 @@ services:
|
|||||||
sut:
|
sut:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: ./docker/Dockerfile.test
|
dockerfile: ./docker/Dockerfile.sut
|
||||||
links:
|
links:
|
||||||
- "app:target"
|
- "app:target"
|
||||||
depends_on:
|
depends_on:
|
||||||
|
|||||||
12
docker/Dockerfile.sut
Normal file
12
docker/Dockerfile.sut
Normal file
@@ -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"]
|
||||||
Reference in New Issue
Block a user