1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

refactor: replace sqlite with pure go implementation

This commit is contained in:
Ferdinand Mütsch
2022-09-08 21:13:13 +02:00
parent e399af1f1f
commit dd8658e33e
7 changed files with 71 additions and 60 deletions

View File

@@ -11,7 +11,7 @@ ADD ./go.mod ./go.sum ./
RUN go mod download
ADD . .
RUN go build -ldflags "-s -w" -v -o wakapi main.go
RUN CGO_ENABLED=0 go build -ldflags "-s -w" -v -o wakapi main.go
WORKDIR /staging
RUN mkdir ./data ./app && \