Yanis Rigaudeau
2498b8e18a
All checks were successful
continuous-integration/drone/push Build is passing
14 lines
209 B
Docker
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
|