mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-16 14:34:54 +02: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"]
|