You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-whoami/Dockerfile.windows

19 lines
283 B

ARG golang=golang:1.13-windowsservercore-1809
ARG target=mcr.microsoft.com/windows/nanoserver:1809
FROM $golang AS build
COPY . /code
WORKDIR /code
RUN go get -d ./...
RUN go build http.go
FROM $target
COPY --from=build /code/http.exe /http.exe
EXPOSE 8080
CMD ["\\http.exe"]