tesla-simulator / Dockerfile
mrm8488's picture
Update Dockerfile
c6e2d89
raw
history blame
No virus
275 Bytes
# 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" ]