shad-go/testenv.docker

12 lines
332 B
Docker
Raw Normal View History

2023-02-11 18:48:52 +00:00
FROM cr.yandex/crp9onavos88ug32d5r2/grader/go-build:latest
2020-01-31 19:03:57 +00:00
COPY . /opt/shad
2020-05-30 13:22:42 +00:00
RUN cd /opt/shad && go mod download
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