AjithBharadwaj commited on
Commit
0e3145a
·
verified ·
1 Parent(s): c24762d

Create Dockerfile

Browse files
Files changed (1) hide show
  1. 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.