mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2025-05-22 17:11:19 +00:00
Some checks failed
Pytest API Testing / Pytes-API-Testing (push) Failing after 21s
16 lines
268 B
Docker
16 lines
268 B
Docker
FROM reg.liteyuki.icu/dockerhub/python:3.12-alpine
|
|
|
|
WORKDIR /liteyukibot
|
|
|
|
COPY main.py .
|
|
COPY pyproject.toml .
|
|
COPY liteyukibot/ .
|
|
COPY uv.lock .
|
|
|
|
RUN pip install uv
|
|
|
|
ENV UV_COMPILE_BYTECODE=1
|
|
|
|
RUN uv venv --python 3.12 && uv sync
|
|
|
|
CMD [".venv/bin/python3", "main.py"] |