Erick Ruiz de Chavez
fe02945cb2
Perl was having issues with markdown's fenced blocks, so I decided to rewrite the generator script in Python.
8 lines
244 B
Text
8 lines
244 B
Text
FROM alpine:latest
|
|
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN apk add python3 py3-pip lowdown \
|
|
&& python3 -m pip install -r requirements.txt --break-system-packages
|
|
COPY generate_capsule.py .
|
|
ENTRYPOINT [ "python3", "generate_capsule.py" ]
|