mirror of
https://github.com/ClusterCockpit/cc-docker.git
synced 2025-07-23 05:11:41 +02:00
Introduce cc-metric-store and nats containers
This commit is contained in:
17
cc-metric-store/Dockerfile
Normal file
17
cc-metric-store/Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM golang:1.17
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get -y install git
|
||||
|
||||
RUN git clone https://github.com/ClusterCockpit/cc-metric-store.git /cc-metric-store
|
||||
RUN cd /cc-metric-store && go build
|
||||
|
||||
# Reactivate when latest commit is available
|
||||
#RUN go get -d -v github.com/ClusterCockpit/cc-metric-store
|
||||
#RUN go install -v github.com/ClusterCockpit/cc-metric-store@latest
|
||||
|
||||
RUN mv /cc-metric-store/cc-metric-store /go/bin
|
||||
COPY config.json /go/bin
|
||||
|
||||
WORKDIR /go/bin
|
||||
CMD ["./cc-metric-store"]
|
Reference in New Issue
Block a user