meshtastic-map/Dockerfile

11 lines
133 B
Text
Raw Normal View History

FROM node:lts-alpine
2024-06-15 14:50:45 +12:00
# add project files to /app
ADD ./ /app
WORKDIR /app
2024-06-15 14:50:45 +12:00
# install node dependencies
RUN npm install
2024-06-15 14:50:45 +12:00
EXPOSE 8080