hckvps commited on
Commit
58e89ed
·
verified ·
1 Parent(s): 49ca498

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM php:8.0-cli
2
+
3
+ COPY . /usr/src/myapp
4
+ WORKDIR /usr/src/myapp
5
+
6
+ CMD ["php", "-S", "0.0.0.0:7860"]