Files
mev-beta/test-feed/Dockerfile
Administrator 7694811784 ...
2025-11-17 20:45:05 +01:00

15 lines
240 B
Docker

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"]