This repository has been archived on 2024-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
v6d1tokens/Dockerfile
2022-11-04 05:32:01 +00:00

13 lines
336 B
Docker

# syntax=docker/dockerfile:1
FROM python:3.10
WORKDIR /v6
ENV v6root=/v6data
ENV v6host=0.0.0.0
ENV v6port=5910
COPY requirements.txt dist/requirements.txt
RUN pip install -r dist/requirements.txt
COPY setup.py dist/setup.py
COPY v6d1tokens dist/v6d1tokens
RUN pip install -e dist/.[full]
CMD ["python3", "-m", "v6d1tokens.run-server"]