mirror of
https://github.com/cmehay/pyentrypoint
synced 2024-10-30 15:21:11 +00:00
1770ac87f6
- Add new `commands` setting to handle multiple commands - Deprecate `command` and `subcommands` - Drop support for python 2 - Handle dependancy and build with Poetry
15 lines
236 B
Python
15 lines
236 B
Python
FROM python:3
|
|
|
|
ENV POETRY_VIRTUALENVS_CREATE=false
|
|
|
|
ADD . /tmp/
|
|
|
|
RUN cd /tmp && \
|
|
pip install --upgrade pip poetry && \
|
|
poetry install --no-dev && \
|
|
rm -rf *
|
|
|
|
ONBUILD ADD entrypoint-config.yml .
|
|
|
|
ENTRYPOINT ["pyentrypoint"]
|