diff options
author | Ricky Elrod <codeblock@fedoraproject.org> | 2017-08-24 04:13:51 +0000 |
---|---|---|
committer | Ricky Elrod <codeblock@fedoraproject.org> | 2017-08-24 04:13:51 +0000 |
commit | ac6f126070f06d7c671fe1e88da01b587c58bef3 (patch) | |
tree | 5f74c673cd312cd604dc649aa93ad2865a803b0b | |
parent | b64bcbb09222b9d90a1514f48948c87332b6d5e3 (diff) | |
download | ansible-ac6f126070f06d7c671fe1e88da01b587c58bef3.tar.gz ansible-ac6f126070f06d7c671fe1e88da01b587c58bef3.tar.xz ansible-ac6f126070f06d7c671fe1e88da01b587c58bef3.zip |
play around a little bit
Signed-off-by: Ricky Elrod <codeblock@fedoraproject.org>
-rw-r--r-- | roles/openshift-apps/greenwave/templates/buildconfig.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/roles/openshift-apps/greenwave/templates/buildconfig.yml b/roles/openshift-apps/greenwave/templates/buildconfig.yml index e9ed4f33f..002018591 100644 --- a/roles/openshift-apps/greenwave/templates/buildconfig.yml +++ b/roles/openshift-apps/greenwave/templates/buildconfig.yml @@ -14,16 +14,14 @@ spec: vendor="Fedora Infrastructure" \ license="MIT" RUN yum -y install --setopt=tsflags=nodocs \ - git \ python-gunicorn \ python-requests \ PyYAML \ python2-flask - #RUN yum -y install --setopt=tsflags=nodocs \ - #RUN https://kojipkgs.fedoraproject.org//packages/greenwave/0.1.1/1.02795e8.fc26/noarch/greenwave-0.1.1-1.02795e8.fc26.noarch.rpm + RUN yum -y install --setopt=tsflags=nodocs \ + https://kojipkgs.fedoraproject.org//packages/greenwave/0.1.1/1.02795e8.fc26/noarch/greenwave-0.1.1-1.02795e8.fc26.noarch.rpm EXPOSE 8080 - #ENTRYPOINT gunicorn --bind 0.0.0.0:8080 --access-logfile=- greenwave.wsgi:app - ENTRYPOINT tail -f /dev/null + ENTRYPOINT gunicorn --bind 0.0.0.0:8080 --access-logfile=- greenwave.wsgi:app strategy: type: Docker output: |