We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bb62a0 commit 5431315Copy full SHA for 5431315
1 file changed
docker/Dockerfile
@@ -5,16 +5,15 @@ FROM python:${PYTHON_IMAGE_TAG}}
5
6
WORKDIR /app
7
8
-RUN pip install script_runner==${SCRIPT_RUNNER_VERSION}
+RUN pip install script-runner-api==${SCRIPT_RUNNER_VERSION}
9
10
COPY ./entrypoint.sh /entrypoint.sh
11
RUN dos2unix /entrypoint.sh
12
RUN chmod +x /entrypoint.sh
13
14
COPY ./ .
15
16
-ENV PYTHONPATH="${RBASE}:${PYTHONPATH}"
17
-ENV FLASK_APP=/app/main.py
+ENV FLASK_APP=script_runner.main:app
18
ENV SERVER_VERSION=$SERVER_VERSION
19
20
ENTRYPOINT [ "/entrypoint.sh" ]
0 commit comments