Files
docker-docs/tests/Dockerfile
Michael Pereira 85ada8850d Replace deprecated MAINTAINER with LABEL (#1445)
Replace MAINTAINER instruction with LABEL as MAINTAINER was deprecated in https://github.com/docker/docker/pull/25466
2017-03-01 19:54:22 -08:00

8 lines
173 B
Docker

FROM golang:1.7.3-alpine
COPY src /go/src
WORKDIR /go/src/validator
# when running the container, MOUNT docs repo in /docs
CMD ["go", "test", "-v", "-run", "FrontMatter"]