Spaces:
Paused
Paused
Commit ·
218f97b
1
Parent(s): c0460ff
Create Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM heroku/heroku:20
|
| 2 |
+
RUN curl -sSL https://github.com/jpillora/chisel/releases/download/v1.7.6/chisel_1.7.6_linux_amd64.gz | zcat > /bin/chisel
|
| 3 |
+
RUN chmod +x /bin/chisel
|
| 4 |
+
RUN useradd -m heroku
|
| 5 |
+
USER heroku
|
| 6 |
+
EXPOSE 7860
|
| 7 |
+
CMD chisel server --port 7860 --auth password --socks5 --reverse
|