Initial commit

This commit is contained in:
askiiart 2023-09-25 10:09:02 -05:00
commit 5b064a14b3
No known key found for this signature in database
GPG key ID: 94789D499CBE78CE
4 changed files with 63 additions and 0 deletions

5
Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM golang:alpine
RUN go install github.com/TheBigRoomXXL/tinyfeed@latest
WORKDIR /data
COPY run.sh /data/run.sh
CMD ["/data/run.sh"]