docs/hack/docker/Dockerfile

12 lines
264 B
Docker

FROM squidfunk/mkdocs-material
RUN apk add --no-cache --update nodejs npm bash hugo curl \
build-base libffi-dev
WORKDIR /site
COPY ./package*.json /site/
COPY ./requirements.txt /site/
# Python Dependencies
RUN pip --no-cache-dir install -r requirements.txt