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.
15 lines
173 B
15 lines
173 B
8 years ago
|
FROM golang:nanoserver
|
||
|
|
||
|
COPY . /code
|
||
|
WORKDIR /code
|
||
|
|
||
|
RUN go build http.go
|
||
|
|
||
|
FROM microsoft/nanoserver
|
||
|
|
||
|
COPY --from=0 /code/http.exe /http.exe
|
||
|
|
||
|
EXPOSE 8080
|
||
|
|
||
|
CMD ["\\http.exe"]
|