Compare commits

...
Sign in to create a new pull request.

9 commits

Author SHA1 Message Date
Lukas Holecek
22b9ac54b2 update for waiverdb 0.10.0
(cherry picked from commit b3ecca7cb0)
2018-05-15 12:46:13 +10:00
Ralph Bean
85f5fd2362 A few fixes for fedmsg.publish.
(cherry picked from commit f470eb42ea)
2018-05-15 12:44:51 +10:00
Matt Jia
7f95278e56
Bump RELEASE to 6 2017-09-29 11:55:50 +10:00
Matt Jia
0da836bc39
Revert "F26 branch"
This reverts commit 86f5accb2e.
2017-09-29 11:53:09 +10:00
Matt Jia
65e2ef878d
Bump RELEASE to 5 2017-09-29 11:41:11 +10:00
Adam Miller
2be9a61de1 Bump RELEASE for automatic rebuild 2017-09-21 14:01:54 -05:00
Adam Miller
c730919117 Bump RELEASE for automatic rebuild 2017-08-24 16:54:25 -05:00
Adam Miller
21adf1e76b Bump RELEASE for automatic rebuild 2017-07-25 16:23:09 -05:00
Dan Callaghan
86f5accb2e F26 branch 2017-07-07 11:32:03 +10:00

View file

@ -1,6 +1,6 @@
FROM registry.fedoraproject.org/fedora:rawhide
MAINTAINER "Dan Callaghan" <dcallagh@redhat.com>
ENV NAME=waiverdb VERSION=0 RELEASE=1
ENV NAME=waiverdb VERSION=0 RELEASE=14
LABEL com.redhat.component="$NAME" \
name="$FGC/$NAME" \
version="$VERSION" \
@ -11,9 +11,14 @@ LABEL com.redhat.component="$NAME" \
RUN dnf -y install --setopt=tsflags=nodocs \
python-gunicorn \
python-psycopg2 \
waiverdb \
https://kojipkgs.fedoraproject.org//packages/waiverdb/0.10.0/1.fc26/noarch/waiverdb-0.10.0-1.fc26.noarch.rpm \
https://kojipkgs.fedoraproject.org//packages/waiverdb/0.10.0/1.fc26/noarch/waiverdb-common-0.10.0-1.fc26.noarch.rpm \
&& dnf -y clean all
COPY README.md /README.md
# Make sure fedmsg can write its CRL.
RUN chmod 777 /var/run/fedmsg/
# Declare a user so that fedmsg.publish works.
ENV USER=openshift
USER 1001
EXPOSE 8080
ENTRYPOINT gunicorn --bind 0.0.0.0:8080 --access-logfile=- waiverdb.wsgi:app