|
@@ -0,0 +1,16 @@
|
|
|
+FROM ubuntu:18.04
|
|
|
+
|
|
|
+RUN apt update -y
|
|
|
+RUN apt upgrade -y
|
|
|
+RUN apt install wget -y
|
|
|
+
|
|
|
+RUN mkdir -p /usr/local/data
|
|
|
+RUN wget https://dl.google.com/go/go1.12.2.linux-amd64.tar.gz
|
|
|
+RUN tar -C /usr/local -xzf go1.12.2.linux-amd64.tar.gz
|
|
|
+
|
|
|
+RUN apt-get install build-essential -y
|
|
|
+RUN apt-get install vim -y
|
|
|
+
|
|
|
+RUN apt-get install rsync -y
|
|
|
+
|
|
|
+RUN echo "export PATH=$PATH:/usr/local/go/bin" >> /root/.bashrc
|