Skip to content

Commit

Permalink
update dockerfile, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
felipejfc committed Aug 22, 2017
1 parent f8e5039 commit 877c60c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
1 change: 1 addition & 0 deletions .Dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bin
15 changes: 8 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@ RUN go get -u github.com/jteeuwen/go-bindata/...

ADD . /go/src/github.com/topfreegames/maestro
RUN cd /go/src/github.com/topfreegames/maestro && \
make build && \
make plugins-linux && \
mv bin/grpc.so /app/bin/grpc.so
COPY ./bin/maestro-linux-amd64 /app/maestro
COPY ./config/local.yaml /app/config/local.yaml
COPY ./Makefile /app/Makefile
COPY ./scripts/drop.sql /app/scripts/drop.sql
COPY ./migrations /app/migrations

mv bin/maestro /app/maestro && \
mv bin/grpc.so /app/bin/grpc.so && \
mv config /app/config && \
mv scripts /app/scripts && \
mv migrations /app/migrations && \
mv Makefile /app/Makefile
WORKDIR /app
RUN make assets

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ setup-ci:
build:
@mkdir -p bin && go build -o ./bin/maestro main.go

build-docker: cross-build-linux-amd64
build-docker:
@docker build -t maestro .

cross-build-linux-amd64:
Expand Down
2 changes: 1 addition & 1 deletion helm/charts/maestro/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: maestro
home: https://github.com/topfreegames/maestro
description: Maestro api and worker
version: 3.4.3
version: 3.4.4
maintainers:
- name: TFGCo
email: backend@tfgco.com
2 changes: 1 addition & 1 deletion metadata/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
package metadata

//Version of Maestro
var Version = "3.4.3"
var Version = "3.4.4"

//KubeVersion is the desired Kubernetes version
var KubeVersion = "v1.7.0"
4 changes: 2 additions & 2 deletions migrations/migrations.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 877c60c

Please sign in to comment.