mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
Replace MAINTAINER instruction with LABEL as MAINTAINER was deprecated in https://github.com/docker/docker/pull/25466
8 lines
173 B
Docker
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"]
|