Build insider image

pull/3/head
Stefan Scherer 7 years ago
parent ff2fb1a81e
commit a80965df3e
No known key found for this signature in database
GPG Key ID: 5966AEAC37E957FA

@ -0,0 +1,14 @@
FROM stefanscherer/golang-windows:1.9-insider AS build
COPY . /code
WORKDIR /code
RUN go build http.go
FROM microsoft/nanoserver-insider
COPY --from=build /code/http.exe /http.exe
EXPOSE 8080
CMD ["\\http.exe"]
Loading…
Cancel
Save