barebones docker | pocketbase | hono | svelte

This commit is contained in:
JCEEE
2026-06-23 21:49:54 +01:00
parent 2253b54077
commit f9d9fa9ace
105 changed files with 27341 additions and 97 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM alpine:latest
RUN apk add --no-cache curl unzip && \
curl -L -o /tmp/pb.zip https://github.com/pocketbase/pocketbase/releases/download/v0.25.8/pocketbase_0.25.8_linux_amd64.zip && \
unzip /tmp/pb.zip -d /usr/local/bin/ && \
rm /tmp/pb.zip && \
apk del curl unzip
EXPOSE 8090
CMD ["pocketbase", "serve", "--http=0.0.0.0:8090"]