mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-01-15 09:26:19 +00:00
15 lines
186 B
Docker
15 lines
186 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM golang:1.19-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY go.mod ./
|
|
COPY go.sum ./
|
|
RUN go mod download
|
|
|
|
COPY *.go ./
|
|
|
|
RUN go build -o /testplan
|
|
|
|
ENTRYPOINT [ "/testplan"] |