Skip to content
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.

Commit

Permalink
Add brew & docker to release.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmars committed Nov 25, 2017
1 parent 67884fb commit b267d48
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ builds:
- windows
goarch:
- amd64
brew:
github:
owner: cmars
name: homebrew-ormesh
dockers:
- image: cmars/ormesh
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM debian:stretch-slim
RUN apt-get update
RUN apt-get install -y gnupg
RUN apt-get dist-upgrade -y
RUN echo "deb http://deb.torproject.org/torproject.org stretch main" | tee /etc/apt/sources.list.d/tor.list
RUN echo "deb-src http://deb.torproject.org/torproject.org stretch main" | tee -a /etc/apt/sources.list.d/tor.list
RUN gpg --keyserver keys.gnupg.net --recv A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89
RUN gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | apt-key add -
RUN apt-get update
RUN apt-get install -y tor deb.torproject.org-keyring
COPY ormesh /
ENTRYPOINT ["/ormesh", "agent", "run"]

0 comments on commit b267d48

Please sign in to comment.