initial support

This commit is contained in:
gengjiawen
2017-12-19 23:05:32 +08:00
committed by shengxiang
parent cc6b6987f8
commit 24ef16e80e

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM golang:latest
RUN mkdir /app
ADD . /app/
WORKDIR /app
RUN go build
CMD ["/app/gohttpserver"]