mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-10 14:24:28 +00:00
10 lines
No EOL
213 B
Docker
10 lines
No EOL
213 B
Docker
FROM python:3.8
|
|
|
|
RUN pip install --upgrade pip
|
|
|
|
WORKDIR /mkdocs
|
|
|
|
RUN --mount=target=/build/requirements.txt,source=docs/requirements.txt \
|
|
pip install -r /build/requirements.txt
|
|
|
|
ENTRYPOINT ["mkdocs"] |