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 0d7945b commit 64b4db8Copy full SHA for 64b4db8
Dockerfile
@@ -9,7 +9,6 @@ COPY *.py /app
9
COPY schemata /app
10
COPY scraping_config.yaml /app
11
12
-
13
ENV CONFLUENCE_URL ""
14
ENV CONFLUENCE_LOGIN ""
15
ENV CONFLUENCE_PASSWORD ""
@@ -19,7 +18,8 @@ ENV GIT_HUB_OWNER ""
19
18
ENV GIT_HUB_REPO ""
20
ENV GIT_HUB_HOSTNAME "" # for on premise github enterprise
21
22
-USER 1000
+RUN adduser collector -u 1000 --home /app --disabled-password --gecos '' --shell /bin/bash
+USER collector
23
24
ENTRYPOINT ["python3", "/app/confluence_collector.py"]
25
CMD [ "/app/scraping_config.yaml" ]
0 commit comments