mrm8488 commited on
Commit
dadb4d7
1 Parent(s): cff39f8

Initial commit

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dockerfile for Node.js app
2
+ FROM node:16-slim
3
+
4
+ RUN apt update && apt upgrade -y && apt install git -y && apt autoremove -y
5
+
6
+ RUN git clone https://github.com/llSourcell/Tesla-Simulator.git
7
+
8
+ WORKDIR /Tesla-Simulator
9
+
10
+ RUN npm i --force
11
+
12
+ EXPOSE 8080
13
+
14
+ CMD [ "npm", "start" ]