14 lines
257 B
Text
14 lines
257 B
Text
|
# This Dockerfile is meant for building listen for Windows ONLY
|
||
|
# listen is currently not intended to run in a Docker container
|
||
|
|
||
|
ARG IMAGE
|
||
|
|
||
|
FROM golang:${IMAGE} AS build
|
||
|
|
||
|
WORKDIR C:/build/listen
|
||
|
COPY . .
|
||
|
|
||
|
RUN go build .
|
||
|
|
||
|
CMD ["ping.exe", "-t", "localhost"]
|