You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 364B

1234567891011121314151617
  1. FROM golang:rc
  2. EXPOSE 6667/tcp 6697/tcp
  3. RUN apt-get install -y git
  4. RUN mkdir -p /go/src/github.com/oragono
  5. WORKDIR /go/src/github.com/oragono
  6. RUN git clone https://github.com/oragono/oragono.git
  7. WORKDIR /go/src/github.com/oragono/oragono
  8. RUN git submodule update --init
  9. RUN go build oragono.go
  10. COPY run.sh /go/src/github.com/oragono/oragono
  11. CMD ["./run.sh"]