mirror of
https://github.com/EchoVault/SugarDB.git
synced 2025-10-21 15:09:30 +08:00
9 lines
125 B
Docker
9 lines
125 B
Docker
# run docker-compose from root dir
|
|
FROM golang:latest
|
|
|
|
WORKDIR /testspace
|
|
|
|
COPY . ./
|
|
|
|
CMD make test; make test-race;
|