Create Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM ghcr.io/presenton/presenton:latest
|
| 2 |
+
|
| 3 |
+
RUN apt-get update && apt-get install -y socat && rm -rf /var/lib/apt/lists/*
|
| 4 |
+
|
| 5 |
+
EXPOSE 7860
|
| 6 |
+
|
| 7 |
+
CMD socat TCP-LISTEN:7860,fork,reuseaddr TCP:127.0.0.1:80 & exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
|