mrm8488/tesla-simulator
0
1# Dockerfile for Node.js application2FROM node:16-slim3 4RUN apt update && apt upgrade -y && apt install git -y && apt autoremove -y5 6RUN git clone https://github.com/mrm8488/Tesla-Simulator.git7 8WORKDIR /Tesla-Simulator9 10RUN npm i --force11 12EXPOSE 786013 14CMD [ "npm", "start" ]