ARG golang=golang:nanoserver ARG target=microsoft/nanoserver FROM $golang AS build COPY . /code WORKDIR /code RUN go build http.go FROM $target COPY --from=build /code/http.exe /http.exe EXPOSE 8080 CMD ["\\http.exe"]