ardasen commited on
Commit
352a903
·
verified ·
1 Parent(s): fa3673e

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use the official Node.js 14 image
2
+ FROM node:18
3
+
4
+ # Set working directory
5
+ WORKDIR /app
6
+
7
+
8
+ RUN npm install fastify passkit-generator
9
+
10
+ COPY . .
11
+
12
+ EXPOSE 7860
13
+
14
+ # Command to run the server
15
+ CMD ["node", "index.js"]