Lockthewi commited on
Commit
7d61f94
·
verified ·
1 Parent(s): 895df21

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use official Deno image
2
+ FROM denoland/deno:latest
3
+
4
+ # Set working directory
5
+ WORKDIR /app
6
+
7
+ # Copy the local code to the container
8
+ COPY . .
9
+
10
+ # Expose port 8080
11
+ EXPOSE 7860
12
+
13
+ # Define the startup command
14
+ CMD ["deno", "run", "--allow-net", "server.ts"]