Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use your pre-built presenton image as base
|
| 2 |
+
FROM ghcr.io/presenton/presenton:latest
|
| 3 |
+
|
| 4 |
+
# If needed, expose the port your app listens on (presenton uses port 80 in your local run)
|
| 5 |
+
EXPOSE 80
|
| 6 |
+
|
| 7 |
+
# Do NOT override ENTRYPOINT/CMD if the base image already starts the app.
|
| 8 |
+
# Optionally add env vars or extra files here.
|