10 lines
164 B
Text
10 lines
164 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
RUN "sudo apt-get update";
|
||
|
|
||
|
RUN "sudo apt-get install --yes ufw";
|
||
|
|
||
|
RUN "sudo ufw allow 22/tcp comment ssh";
|
||
|
|
||
|
RUN "echo 'y' | sudo ufw enable";
|