erick.is/Dockerfile.gemini
Erick Ruiz de Chavez fe02945cb2 Refactor gemini builder with python
Perl was having issues with markdown's fenced blocks, so I decided to rewrite the generator script in Python.
2024-12-29 07:39:13 -05:00

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" ]