add yesterdays and todays posts

This commit is contained in:
2026-02-23 01:10:21 -07:00
parent aae7d716a2
commit a47a28e074
118 changed files with 5101 additions and 135 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM python:alpine
# Enable monospace fonts
RUN apk add font-inconsolata fontconfig
RUN fc-cache -fv
WORKDIR /app
# Install dependencies
RUN apk add firefox geckodriver hugo
COPY requirements.txt requirements.txt
RUN pip install --requirement requirements.txt
# We mount the gokarna source code to avoid rebuilding the image
CMD [ "python", "./screenshot.py" ]