2
0
mirror of https://github.com/cmehay/pyentrypoint synced 2024-10-30 15:21:11 +00:00
pyentrypoint/Dockerfile.py3

15 lines
236 B
Docker
Raw Permalink Normal View History

2015-11-10 00:27:12 +00:00
FROM python:3
ENV POETRY_VIRTUALENVS_CREATE=false
2016-12-05 22:30:52 +00:00
ADD . /tmp/
2015-12-15 07:56:17 +00:00
2016-12-05 22:30:52 +00:00
RUN cd /tmp && \
pip install --upgrade pip poetry && \
poetry install --no-dev && \
2016-12-05 22:30:52 +00:00
rm -rf *
2015-12-15 07:56:17 +00:00
2016-12-05 22:30:52 +00:00
ONBUILD ADD entrypoint-config.yml .
2016-03-05 00:37:28 +00:00
2016-12-05 22:30:52 +00:00
ENTRYPOINT ["pyentrypoint"]