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

12 lines
256 B
Docker

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