Skip to content

Instantly share code, notes, and snippets.

@seanwu1105
Created September 10, 2019 09:28
Show Gist options
  • Save seanwu1105/00f583db130b059d573c43fe9bc337fc to your computer and use it in GitHub Desktop.
Save seanwu1105/00f583db130b059d573c43fe9bc337fc to your computer and use it in GitHub Desktop.
Textile Dockerfile
FROM ubuntu:latest
SHELL ["/bin/bash", "-c"]
RUN apt-get update && \
apt-get install -y \
git \
build-essential \
wget
RUN wget https://github.com/textileio/go-textile/releases/download/v0.7.1/go-textile_v0.7.1_linux-amd64.tar.gz && \
tar xvfz go-textile_v0.7.1_linux-amd64.tar.gz && \
./install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment