1
0
Fork 0
mirror of https://github.com/dragonflydb/dragonfly.git synced 2024-12-15 17:51:06 +00:00

integration test docker image with Go client

This commit is contained in:
Pascal S. de Kloe 2023-03-14 18:27:50 +01:00 committed by Roman Gershman
parent 94b8951f5e
commit f9ec60ee5f

View file

@ -0,0 +1,8 @@
FROM golang:1.20
RUN git clone https://github.com/pascaldekloe/redis.git
WORKDIR redis
ENV TEST_REDIS_ADDR=localhost
CMD ["go", "test", "-v"]