began implementing automated markdown parsing using hedgedoc

This commit is contained in:
CDaut 2022-06-18 16:38:50 +02:00 committed by CDaut
parent e9f2a840a4
commit 5b4f213105
7 changed files with 39 additions and 18 deletions

View file

@ -2,6 +2,9 @@ FROM python:3.10-alpine
ENV PYTHONBUFFERED 1
RUN apk update && apk upgrade
RUN apk add curl bash jq
RUN curl https://raw.githubusercontent.com/hedgedoc/cli/master/bin/hedgedoc > /bin/hedgedoc
RUN chmod +x /bin/hedgedoc
RUN mkdir "/markdownblog"
WORKDIR "/markdownblog"
ADD ./requirements.txt /markdownblog/