Skip to content

Commit 5ad6768

Browse files
author
jul10l14
committed
🔥 Add Dockerfile to project
1 parent b95c49e commit 5ad6768

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM python:3
2+
COPY . /packages
3+
WORKDIR /packages
4+
RUN wget https://dl.google.com/go/go1.12.6.linux-amd64.tar.gz \
5+
&& tar -xvf go1.12.6.linux-amd64.tar.gz && mv go /usr/local
6+
ENV GOROOT /usr/local/go
7+
ENV GOPATH $HOME/Projects/Proj1
8+
ENV PATH $GOPATH/bin:$GOROOT/bin:$PATH
9+
RUN bash ./install-osint.sh

0 commit comments

Comments
 (0)