2025-06-29 13:47:56 -06:00
|
|
|
# This Dockerfile is meant for building listen for Windows ONLY
|
|
|
|
# listen is currently not intended to run in a Docker container
|
|
|
|
|
2025-06-29 15:42:58 -06:00
|
|
|
ARG IMAGE="1-nanoserver"
|
2025-06-29 13:47:56 -06:00
|
|
|
|
|
|
|
FROM golang:${IMAGE} AS build
|
|
|
|
|
|
|
|
WORKDIR C:/build/listen
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN go build .
|
|
|
|
|
|
|
|
CMD ["ping.exe", "-t", "localhost"]
|