Added Dockerfiles

This commit is contained in:
Simon Martens
2025-03-02 11:38:20 +01:00
parent 9132120a7a
commit 9f70ccd0a5
4 changed files with 19 additions and 1 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM golang:1.24
WORKDIR /app
COPY . .
RUN go build -tags=sqlite_fts5,sqlite_json,sqlite_foreign_keys,sqlite_vtable,sqlite_math_functions
EXPOSE 8080
CMD ["./scripts/run.sh"]