12 lines
347 B
Docker
12 lines
347 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.10
|
|
WORKDIR /v6
|
|
ENV v6root=/v6data
|
|
COPY base.requirements.txt base.requirements.txt
|
|
RUN pip install -r base.requirements.txt
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
COPY v6d3losyash v6d3losyash
|
|
COPY constitution constitution
|
|
CMD ["python3", "-m", "v6d3losyash.run-bot"]
|