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 ed09637 commit 1fce91dCopy full SHA for 1fce91d
Dockerfile
@@ -1,5 +1,5 @@
1
FROM python:3.9-buster
2
-WORKDIR /opt/proxstar
+WORKDIR /etc/proxstar
3
RUN apt-get update -y && apt-get install -y python3-dev libldap2-dev libsasl2-dev ldap-utils git
4
COPY requirements.txt .
5
RUN pip install -r requirements.txt
@@ -8,5 +8,5 @@ COPY .git .git/
8
COPY *.py .
9
COPY proxstar ./proxstar
10
RUN touch targets && chmod a+w targets # This is some OKD shit.
11
-RUN git config --global --add safe.directory /opt/proxstar # This is also some OKD shit.
+RUN git config --global --add safe.directory "*" # This is also some OKD shit.
12
ENTRYPOINT ddtrace-run gunicorn proxstar:app --bind=0.0.0.0:8080
0 commit comments