# 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" ]