Move files around

This commit is contained in:
2025-06-04 08:59:01 +02:00
parent 1dec655fb9
commit ed68ead1fb
62 changed files with 36 additions and 1761 deletions

View File

@@ -1,13 +0,0 @@
FROM golang:1.24.1-alpine3.21
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY migrations ./migrations
COPY static ./static
COPY templates ./templates
COPY *.go ./
RUN go build -o /pcinv
CMD ["/pcinv"]