All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
15 lines
227 B
Docker
15 lines
227 B
Docker
FROM python:3.13.1-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY poetry.lock pyproject.toml ./
|
|
|
|
RUN pip install poetry
|
|
|
|
RUN poetry config virtualenvs.create false
|
|
RUN poetry install --no-interaction --no-ansi
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "main.py"]
|