Create Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM heroku/heroku:22
|
2 |
+
RUN curl -sSL https://github.com/jpillora/chisel/releases/download/v1.7.7/chisel_1.7.7_linux_amd64.gz | zcat > /usr/bin/chisel
|
3 |
+
RUN chmod +x /usr/bin/chisel
|
4 |
+
EXPOSE 7860
|
5 |
+
CMD chisel server --socks5 --reverse --auth potato:potato --port 7860
|