-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa0bce5
commit c6f156c
Showing
9 changed files
with
19 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"terminal.integrated.profiles.linux": { | ||
"bash": { | ||
"path": "/c/Windows/system32/bash", | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM ubuntu:16.04 | ||
WORKDIR / | ||
RUN apt-get update && apt-get install -y wget | ||
RUN wget https://github.com/Psy-Fer/interARTIC/releases/download/v0.4.3/interartic-v0.4.3-linux-x86-64-binaries.tar.gz -O interartic_bin.tar.gz | ||
RUN wget https://github.com/Psy-Fer/interARTIC/releases/download/v0.4.4/interartic-v0.4.4-linux-x86-64-binaries.tar.gz -O interartic_bin.tar.gz | ||
RUN tar xf interartic_bin.tar.gz | ||
WORKDIR /interartic_bin | ||
CMD ./run.sh -a 0.0.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM archlinux:base-20210131.0.14634 | ||
WORKDIR / | ||
RUN pacman -Syy --noconfirm && pacman -S --noconfirm wget | ||
RUN wget https://github.com/Psy-Fer/interARTIC/releases/download/v0.4.3/interartic-v0.4.3-linux-x86-64-binaries.tar.gz -O interartic_bin.tar.gz | ||
RUN wget https://github.com/Psy-Fer/interARTIC/releases/download/v0.4.4/interartic-v0.4.4-linux-x86-64-binaries.tar.gz -O interartic_bin.tar.gz | ||
RUN tar xf interartic_bin.tar.gz | ||
WORKDIR /interartic_bin | ||
CMD ./run.sh -a 0.0.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM fedora:34 | ||
WORKDIR / | ||
RUN dnf update -y && dnf install -y wget procps libnsl | ||
RUN wget https://github.com/Psy-Fer/interARTIC/releases/download/v0.4.3/interartic-v0.4.3-linux-x86-64-binaries.tar.gz -O interartic_bin.tar.gz | ||
RUN wget https://github.com/Psy-Fer/interARTIC/releases/download/v0.4.4/interartic-v0.4.4-linux-x86-64-binaries.tar.gz -O interartic_bin.tar.gz | ||
RUN tar xf interartic_bin.tar.gz | ||
WORKDIR /interartic_bin | ||
CMD ./run.sh -a 0.0.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM gentoo/stage3:20210723 | ||
WORKDIR / | ||
RUN wget https://github.com/Psy-Fer/interARTIC/releases/download/v0.4.3/interartic-v0.4.3-linux-x86-64-binaries.tar.gz -O interartic_bin.tar.gz | ||
RUN wget https://github.com/Psy-Fer/interARTIC/releases/download/v0.4.4/interartic-v0.4.4-linux-x86-64-binaries.tar.gz -O interartic_bin.tar.gz | ||
RUN tar xf interartic_bin.tar.gz | ||
WORKDIR /interartic_bin | ||
CMD ./run.sh -a 0.0.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM opensuse/leap:15.2 | ||
WORKDIR / | ||
RUN zypper install -y wget tar gzip | ||
RUN wget https://github.com/Psy-Fer/interARTIC/releases/download/v0.4.3/interartic-v0.4.3-linux-x86-64-binaries.tar.gz -O interartic_bin.tar.gz | ||
RUN wget https://github.com/Psy-Fer/interARTIC/releases/download/v0.4.4/interartic-v0.4.4-linux-x86-64-binaries.tar.gz -O interartic_bin.tar.gz | ||
RUN tar xf interartic_bin.tar.gz | ||
WORKDIR /interartic_bin | ||
CMD ./run.sh -a 0.0.0.0 |