Files
drone-with-go/docker/Dockerfile.sut
2017-08-16 08:36:30 -03:00

13 lines
191 B
Docker

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"]