Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
koko
Commits
0d69b8c4
Commit
0d69b8c4
authored
May 23, 2019
by
Eric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[update] add Dockerfile
parent
7487a937
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
5 deletions
+17
-5
Dockerfile
Dockerfile
+12
-5
Makefile
cmd/Makefile
+5
-0
No files found.
Dockerfile
View file @
0d69b8c4
FROM
golang:1.12-alpine as stage-build
WORKDIR
/go/src/coco
LABEL
stage=stage-build
WORKDIR
/go/src/cocogo
RUN
apk update
&&
apk add git
RUN
export
https_proxy
=
http://192.168.1.9:1087
ARG
https_proxy
ARG
http_proxy
ENV
https_proxy=$https_proxy
ENV
http_proxy=$http_proxy
RUN
go get
-u
github.com/golang/dep/cmd/dep
COPY
. .
RUN
cd
cmd
&&
go build coco.go
RUN
dep ensure
-vendor-only
&&
cd
cmd
&&
go build coco.go
FROM
alpine
WORKDIR
/opt/coco/
COPY
--from=stage-build /go/src/coco/cmd/ /opt/coco/
CMD
['/opt/coco/coco']
COPY
--from=stage-build /go/src/cocogo/cmd/coco .
COPY
--from=stage-build /go/src/cocogo/cmd/locale .
RUN
echo
>
config.yml
EXPOSE
2222
CMD
["./coco"]
cmd/Makefile
View file @
0d69b8c4
...
...
@@ -33,6 +33,11 @@ darwin:
GOOS
=
darwin
GOARCH
=
amd64 go build
-o
$(BASEPATH)
/
$(SOFTWARENAME)
-darwin-amd64
$(COCOSRCFILE)
tar
czvf
$(BASEPATH)
/../build/
$(SOFTWARENAME)
-darwin-amd64
.tar.gz
$(SOFTWARENAME)
-darwin-amd64
locale/ config_example.yml
.PHONY
:
docker
docker
:
@
echo
"build docker images"
docker build
-t
cocogo
--build-arg
http_proxy
=
$(http_proxy)
--build-arg
https_proxy
=
$(https_proxy)
$(BASEPATH)
/../
.PHONY
:
clean
clean
:
-
rm
-rf
$(BASEPATH)
/../build
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment