9 lines
219 B
Docker
9 lines
219 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.9
|
|
WORKDIR /v6
|
|
ENV v6root=/v6data
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
COPY v6d0auth v6d0auth
|
|
CMD ["python3", "-m", "v6d0auth.run-server"]
|