Compare commits
2 Commits
cfda71a3aa
...
b00f9a5605
Author | SHA1 | Date |
---|---|---|
|
b00f9a5605 | |
|
024a2c75e9 |
|
@ -0,0 +1,27 @@
|
||||||
|
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
||||||
|
*.o
|
||||||
|
*.a
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Folders
|
||||||
|
_obj
|
||||||
|
_test
|
||||||
|
|
||||||
|
# Architecture specific extensions/prefixes
|
||||||
|
*.[568vq]
|
||||||
|
[568vq].out
|
||||||
|
|
||||||
|
*.cgo1.go
|
||||||
|
*.cgo2.c
|
||||||
|
_cgo_defun.c
|
||||||
|
_cgo_gotypes.go
|
||||||
|
_cgo_export.*
|
||||||
|
|
||||||
|
_testmain.go
|
||||||
|
|
||||||
|
# Binaries
|
||||||
|
*.exe
|
||||||
|
/pixelqr
|
||||||
|
|
||||||
|
# Test files
|
||||||
|
*.test
|
|
@ -0,0 +1,11 @@
|
||||||
|
FROM golang:1.9-alpine
|
||||||
|
|
||||||
|
COPY . ${GOPATH}/src/git.icedream.tech/icedream/pixelqr
|
||||||
|
RUN cd "${GOPATH}/src/git.icedream.tech/icedream/pixelqr" \
|
||||||
|
&& go get -v -d ./... \
|
||||||
|
&& go build \
|
||||||
|
&& mv testssh /usr/local/bin \
|
||||||
|
&& cd / \
|
||||||
|
&& rm -r ${GOPATH}
|
||||||
|
|
||||||
|
CMD ["testssh"]
|
|
@ -0,0 +1,24 @@
|
||||||
|
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
||||||
|
*.o
|
||||||
|
*.a
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Folders
|
||||||
|
_obj
|
||||||
|
_test
|
||||||
|
|
||||||
|
# Architecture specific extensions/prefixes
|
||||||
|
*.[568vq]
|
||||||
|
[568vq].out
|
||||||
|
|
||||||
|
*.cgo1.go
|
||||||
|
*.cgo2.c
|
||||||
|
_cgo_defun.c
|
||||||
|
_cgo_gotypes.go
|
||||||
|
_cgo_export.*
|
||||||
|
|
||||||
|
_testmain.go
|
||||||
|
|
||||||
|
testssh
|
||||||
|
*.exe
|
||||||
|
*.test
|
|
@ -0,0 +1,24 @@
|
||||||
|
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
||||||
|
*.o
|
||||||
|
*.a
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Folders
|
||||||
|
_obj
|
||||||
|
_test
|
||||||
|
|
||||||
|
# Architecture specific extensions/prefixes
|
||||||
|
*.[568vq]
|
||||||
|
[568vq].out
|
||||||
|
|
||||||
|
*.cgo1.go
|
||||||
|
*.cgo2.c
|
||||||
|
_cgo_defun.c
|
||||||
|
_cgo_gotypes.go
|
||||||
|
_cgo_export.*
|
||||||
|
|
||||||
|
_testmain.go
|
||||||
|
|
||||||
|
testssh
|
||||||
|
*.exe
|
||||||
|
*.test
|
Loading…
Reference in New Issue