shad-go/testenv.docker

10 lines
282 B
Docker
Raw Normal View History

2020-01-31 19:03:57 +00:00
FROM eu.gcr.io/shad-ts/grader/go-build:latest
COPY . /opt/shad
2020-02-12 23:18:05 +00:00
COPY .gitlab-ci.yml /opt/shad/.grader-ci.yml
RUN cd /opt/shad && go install gitlab.com/slon/shad-go/tools/testtool/cmd/testtool
2020-01-31 19:48:08 +00:00
2020-02-13 00:07:21 +00:00
RUN find /opt/shad -type f -iname '*.go' -not -path '*/testdata/*' | xargs chmod o-rwx