We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f295068 commit ea7a93fCopy full SHA for ea7a93f
Dockerfile
@@ -12,8 +12,10 @@ WORKDIR /opt/elastalert
12
RUN mkdir server_data
13
RUN pip install -r requirements.txt
14
WORKDIR /opt/elastalert-server
15
-COPY . /opt/elastalert-server
+ADD . /opt/elastalert-server
16
+ADD rule_templates/ /opt/elastalert/rule_templates/
17
+ADD rules/ /opt/elastalert/rules/
18
RUN npm install --production --quiet
-COPY config/elastalert.yaml /opt/elastalert/config.yaml
-COPY config/elastalert-server.json config/config.json
19
+ADD config/elastalert.yaml /opt/elastalert/config.yaml
20
+ADD config/elastalert-server.json config/config.json
21
ENTRYPOINT ["npm", "start"]
0 commit comments