Files
SugarDB/windows_test_env/Dockerfile
2024-08-07 21:40:17 -05:00

9 lines
125 B
Docker

# run docker-compose from root dir
FROM golang:latest
WORKDIR /testspace
COPY . ./
CMD make test; make test-race;