Skip to content

Commit

Permalink
clean ci (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
labkode committed Oct 17, 2019
1 parent 146cbf8 commit ffa0628
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 20 deletions.
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions Dockerfile.reva
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
# granted to it by virtue of its status as an Intergovernmental Organization
# or submit itself to any jurisdiction.

FROM golang:1.11
FROM golang:1.13

WORKDIR /go/src/github/cs3org/reva
COPY . .
RUN GO111MODULE=off make deps
ENV GO111MODULE=on
RUN make build-reva
RUN make deps && make
WORKDIR /go/src/github/cs3org/reva/cmd/reva
RUN go install
ENTRYPOINT ["/go/bin/reva"]
8 changes: 4 additions & 4 deletions Dockerfile.revad
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
# granted to it by virtue of its status as an Intergovernmental Organization
# or submit itself to any jurisdiction.

FROM golang:1.11
FROM golang:1.13

WORKDIR /go/src/github/cs3org/reva
COPY . .
RUN GO111MODULE=off make deps
ENV GO111MODULE=on
RUN make build-revad
RUN make deps && make
WORKDIR /go/src/github/cs3org/reva/cmd/revad
RUN go install
RUN mkdir -p /etc/revad/
RUN cp /go/src/github/cs3org/reva/cmd/revad/revad.toml /etc/revad/revad.toml
EXPOSE 9998
RUN echo "" > /etc/revad/revad.toml
EXPOSE 9999
EXPOSE 10000
CMD ["/go/bin/revad", "-c", "/etc/revad/revad.toml", "-p", "/var/run/revad.pid"]

0 comments on commit ffa0628

Please sign in to comment.