You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pyentrypoint/Dockerfile.py3

13 lines
192 B
Docker

9 years ago
FROM python:3
ADD . /tmp/
9 years ago
RUN cd /tmp && \
pip install --upgrade pip && \
python setup.py install && \
rm -rf *
9 years ago
ONBUILD ADD entrypoint-config.yml .
8 years ago
ENTRYPOINT ["pyentrypoint"]