dj-embe/Dockerfile
Yanis Rigaudeau 2498b8e18a
All checks were successful
continuous-integration/drone/push Build is passing
pipenv to poetry
2023-09-20 22:49:30 +02:00

14 lines
209 B
Docker

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