mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2024-12-15 17:51:06 +00:00
8 lines
145 B
Docker
8 lines
145 B
Docker
FROM golang:1.20
|
|
|
|
RUN git clone https://github.com/pascaldekloe/redis.git
|
|
WORKDIR redis
|
|
|
|
ENV TEST_REDIS_ADDR=localhost
|
|
|
|
CMD ["go", "test", "-v"]
|