dockerize image
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
FROM golang:1.14
|
||||
|
||||
ADD . /tmp/code
|
||||
|
||||
RUN cd /tmp/code && make
|
||||
|
||||
FROM ubuntu:eoan
|
||||
|
||||
COPY --from=0 /tmp/code/redis-sentinel-proxy /usr/local/bin/redis-sentinel-proxy
|
||||
|
||||
ADD start /start
|
||||
|
||||
RUN chmod +x /start
|
||||
|
||||
USER nobody
|
||||
|
||||
ENTRYPOINT ["/start"]
|
||||
Reference in New Issue
Block a user