Add spider-net and auto docker stuff

This commit is contained in:
2024-07-12 23:17:24 +02:00
parent 846016166e
commit ca68c88fa9
13 changed files with 167 additions and 0 deletions

13
spider-net/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM golang:1.22.5
WORKDIR /app
#COPY go.mod go.sum ./
#RUN go mod download
#COPY *.go ./
#RUN CGO_ENABLED=0 GOOS=linux go build -o /spider-net
COPY spider-net /spider-net
CMD ["/spider-net"]