mirror of
https://github.com/docker/docs.git
synced 2026-03-27 22:38:54 +07:00
* added test for keywords Signed-off-by: Adrien Duermael <adrien@duermael.com> * fixed keywords in some md files for tests to pass Signed-off-by: Adrien Duermael <adrien@duermael.com> * fixed keywords in /datacenter Signed-off-by: Adrien Duermael <adrien@duermael.com> * tests/Dockerfile: no need to add git Signed-off-by: Adrien Duermael <adrien@duermael.com> * tests/Dockerfile: changed maintainer Signed-off-by: Adrien Duermael <adrien@duermael.com>
9 lines
191 B
Docker
9 lines
191 B
Docker
FROM golang:1.7.3-alpine
|
|
MAINTAINER Adrien Duermael <adrien@docker.com>
|
|
|
|
COPY src /go/src
|
|
WORKDIR /go/src/validator
|
|
|
|
# when running the container, MOUNT docs repo in /docs
|
|
CMD ["go", "test"]
|