You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
349 B
17 lines
349 B
#
|
|
FROM muccg/python-base:debian8-2.7
|
|
MAINTAINER ccg <ccgdevops@googlegroups.com>
|
|
|
|
RUN pip install \
|
|
"devpi-client>=2.0.4,<2.1" \
|
|
"devpi-server>=2.1.3,<2.2" \
|
|
"requests>=2.5.0,<2.6"
|
|
|
|
EXPOSE 3141
|
|
VOLUME /data
|
|
|
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
|
CMD ["devpi"]
|