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-08 01:57:15 +00:00

11 lines
301 B
Docker

# syntax=docker/dockerfile:1
FROM python:3.10
WORKDIR /v6
ENV v6root=/v6data
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"]