added dockerfile and compose config (#1)
Co-authored-by: Patrick Kauls <patrick@kauls.xyz> Reviewed-on: fenpaws/e621-to-graph#1
This commit is contained in:
parent
9c98059972
commit
8cf25e2ac9
3
.gitignore
vendored
3
.gitignore
vendored
@ -189,3 +189,6 @@ $RECYCLE.BIN/
|
|||||||
|
|
||||||
.idea/*
|
.idea/*
|
||||||
/.run/*
|
/.run/*
|
||||||
|
|
||||||
|
|
||||||
|
.env
|
||||||
|
22
Dockerfile
Normal file
22
Dockerfile
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
FROM golang:alpine as builder
|
||||||
|
|
||||||
|
WORKDIR /go/src/git.dragse.it/fenpaws/e621-to-neo4j
|
||||||
|
|
||||||
|
RUN apk add -U --no-cache ca-certificates && update-ca-certificates
|
||||||
|
|
||||||
|
COPY go.mod go.sum ./
|
||||||
|
RUN go mod download
|
||||||
|
|
||||||
|
COPY . ./
|
||||||
|
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -installsuffix cgo -ldflags "-w -s" -o /app
|
||||||
|
|
||||||
|
|
||||||
|
FROM scratch
|
||||||
|
|
||||||
|
WORKDIR /
|
||||||
|
|
||||||
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
||||||
|
COPY --from=builder /app ./
|
||||||
|
|
||||||
|
EXPOSE 8080
|
||||||
|
CMD ["/app"]
|
8
docker-compose.yaml
Normal file
8
docker-compose.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
services:
|
||||||
|
app:
|
||||||
|
restart: unless-stopped
|
||||||
|
build: .
|
||||||
|
ports:
|
||||||
|
- 8080:8080
|
||||||
|
env_file: .env
|
||||||
|
|
Reference in New Issue
Block a user