Files
nwxraybot/Dockerfile
Sergey Elpashev d0bc379518
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Feat: test woodpecker ci
2024-12-27 15:48:24 +03:00

18 lines
263 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 .env .
COPY . .
ENV POSTGRES_PORT=5432
CMD ["python", "main.py"]