forked from scieloorg/publication_stats
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa86213
commit 5804e84
Showing
6 changed files
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
FROM python:3.5.2 | ||
|
||
MAINTAINER [email protected] | ||
|
||
COPY requirements.txt /app/requirements.txt | ||
COPY production.ini-TEMPLATE /app/production.ini-TEMPLATE | ||
COPY docker/generate_production_ini.py /app/docker/generate_production_ini.py | ||
COPY docker/entrypoint.sh /app/docker/entrypoint.sh | ||
COPY docker/supervisord.conf /etc/supervisor/conf.d/supervisord.conf | ||
|
||
WORKDIR /app | ||
|
||
RUN pip install -r requirements.txt | ||
RUN pip install gunicorn | ||
RUN python docker/generate_production_ini.py | ||
|
||
ENV PUBLICATIONSTATS_SETTINGS_FILE=/app/production.ini | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ thriftpy==0.3.1 | |
pyramid==1.5.7 | ||
-e git+https://github.com/scieloorg/[email protected]#egg=xylose | ||
-e git+https://github.com/scieloorg/[email protected]#egg=thriftpywrap | ||
-e git+https://github.com/scieloorg/publication_stats@0.5.5#egg=publication_stats | ||
-e git+https://github.com/scieloorg/publication_stats@docker#egg=publication_stats |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
|
||
setup( | ||
name="publication", | ||
version='0.5.5', | ||
version='0.6.5', | ||
description="A SciELO RPC server and API to retrieve publication statistics from the SciELO Network ", | ||
author="SciELO", | ||
author_email="[email protected]", | ||
|