initial commit

This commit is contained in:
2017-03-30 01:09:55 +01:00
commit ce38f0ec96
134 changed files with 34785 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM golang:alpine
ADD . /go/src/github.com/jimeh/casecmp
RUN go install github.com/jimeh/casecmp
EXPOSE 8080
CMD ["/go/bin/casecmp", "--port", "8080"]
# FROM scratch
# ADD bin/casecmp_linux_amd64 /casecmp
# EXPOSE 8080
# VOLUME /data
# WORKDIR /
# CMD ["/casecmp", "--port", "8080"]