This commit is contained in:
Administrator
2025-11-17 20:45:05 +01:00
parent c80fff061c
commit 7694811784
45 changed files with 917233 additions and 0 deletions

14
test-feed/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM golang:1.21-alpine
WORKDIR /app
# Create test program
COPY test_feed.go .
# Download dependencies
RUN go mod init test && go get github.com/gorilla/websocket
# Build test
RUN go build -o test_feed test_feed.go
CMD ["./test_feed"]