File size: 275 Bytes
c6e2d89
dadb4d7
 
 
 
eea4db8
dadb4d7
 
 
 
 
eea4db8
dadb4d7
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Dockerfile for Node.js application
FROM node:16-slim

RUN apt update && apt upgrade -y && apt install git -y && apt autoremove -y

RUN git clone https://github.com/mrm8488/Tesla-Simulator.git

WORKDIR /Tesla-Simulator

RUN npm i --force

EXPOSE 7860

CMD [ "npm", "start" ]