pipenv to poetry
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-09-20 21:57:07 +02:00
parent 0d6e0e4c19
commit 2498b8e18a
12 changed files with 1575 additions and 1238 deletions

View File

@ -0,0 +1,13 @@
FROM python:3.11.5-alpine
WORKDIR /app
RUN apk add --no-cache poetry
COPY ./poetry.lock ./pyproject.toml ./
RUN poetry install --without dev --sync
COPY ./dj-embe ./dj-embe
CMD poetry run python dj-embe