Files
nwxraybot/Dockerfile
Sergey Elpashev 2ab8ff4cf9
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Feat: aboba
2024-12-27 19:38:13 +03:00

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"]