Compare commits

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

6 commits

Author SHA1 Message Date
Ralph Bean
aa4701c84e A few fixes for fedmsg.publish. 2017-11-06 16:30:17 -05:00
Matt Jia
f0e1a125a4
Bump RELEASE to 6 2017-09-29 13:17:22 +10:00
Adam Miller
f6c8a61e41 Bump RELEASE for automatic rebuild 2017-09-21 10:24:32 -05:00
Adam Miller
ca18371fd3 Bump RELEASE for automatic rebuild 2017-08-24 15:39:05 -05:00
Adam Miller
873d4bc976 Bump RELEASE for automatic rebuild 2017-07-25 12:57:10 -05:00
Dan Callaghan
7a545c8912 F25 branch 2017-07-07 12:39:24 +10:00

View file

@ -1,6 +1,6 @@
FROM registry.fedoraproject.org/fedora:rawhide
FROM registry.fedoraproject.org/fedora:25
MAINTAINER "Dan Callaghan" <dcallagh@redhat.com>
ENV NAME=waiverdb VERSION=0 RELEASE=1
ENV NAME=waiverdb VERSION=0 RELEASE=6
LABEL com.redhat.component="$NAME" \
name="$FGC/$NAME" \
version="$VERSION" \
@ -14,6 +14,10 @@ RUN dnf -y install --setopt=tsflags=nodocs \
waiverdb \
&& 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