mirror of
https://github.com/cmehay/pyentrypoint
synced 2024-10-30 15:21:11 +00:00
14 lines
241 B
Docker
14 lines
241 B
Docker
FROM python:3.8
|
|
|
|
ENV POETRY_VIRTUALENVS_CREATE=false
|
|
|
|
ADD . /usr/local/src/
|
|
|
|
RUN cd /usr/local/src/ && \
|
|
pip install --upgrade pip poetry && \
|
|
poetry install --no-dev
|
|
|
|
ONBUILD ADD entrypoint-config.yml .
|
|
|
|
ENTRYPOINT ["pyentrypoint"]
|