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
2021-11-27 21:55:10 +03:00

12 lines
272 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 requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY v6d1tokens v6d1tokens
CMD ["python3", "-m", "v6d1tokens.run-server"]