diff --git a/.github/workflows/requirements.txt b/.github/workflows/requirements.txt new file mode 100644 index 0000000..cb98b25 --- /dev/null +++ b/.github/workflows/requirements.txt @@ -0,0 +1,9 @@ +# specific input that might be needed for testing in specific repos, otherwise should be fine if not needed +# fontawesomepro +--extra-index-url=https://dl.fontawesome.com/7EBF86FC-5EE1-4B58-ACF7-FB0937B76A52/fontawesome-pro/python/simple/ +fontawesomepro==6.4.0 + +# Portal Theme +--extra-index-url=https://portal:uMjswqj3e3H57x@nexus.service.pragmaticindustries.com/repository/test-pypi/simple +plc-server-openapi-client==0.2.0 +portal-toolmanagement-client==0.1.6 diff --git a/Dockerfile b/Dockerfile index a0052d2..4be6875 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,3 +33,5 @@ RUN apt-get install -y unixodbc ENV DISPLAY=:99 RUN pip install --upgrade pip +COPY requirements.txt /app/ +RUN pip install --no-cache-dir -r /app/requirements.txt