2024-05-10 11:40:32 -07:00
|
|
|
FROM python:3.11.9-alpine
|
2023-10-09 16:59:22 -07:00
|
|
|
|
|
|
|
RUN apk add --no-cache build-base libffi-dev
|
|
|
|
RUN pip install poetry
|
|
|
|
|
|
|
|
WORKDIR /mnt
|
|
|
|
COPY pyproject.toml poetry.lock .
|
|
|
|
RUN poetry install --no-root --only main
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT ["poetry", "run", "python", "discollama.py"]
|