diff --git a/roles/openshift-apps/fasjson/templates/Dockerfile b/roles/openshift-apps/fasjson/templates/Dockerfile index f7ebf091bc..f9d8143175 100644 --- a/roles/openshift-apps/fasjson/templates/Dockerfile +++ b/roles/openshift-apps/fasjson/templates/Dockerfile @@ -25,7 +25,7 @@ RUN python3 -m venv /opt/venv RUN /opt/venv/bin/pip install poetry RUN git clone https://github.com/fedora-infra/fasjson.git && \ pushd fasjson && \ - sed -i '/requests-kerberos = "^0.14.0"/a requests-gssapi = "^1.2.3"' pyproject.toml \ + sed -i '/requests-kerberos = "^0.14.0"/a requests-gssapi = "^1.2.3"' pyproject.toml && \ git checkout {{ (env == 'production')|ternary('stable', 'staging') }} && \ /opt/venv/bin/poetry config virtualenvs.create false && \ /opt/venv/bin/poetry install --no-dev && \