meshtastic-map/Dockerfile
2025-03-27 08:31:16 +01:00

12 lines
165 B
Docker

FROM node:lts-alpine
# add project files to /app
ADD ./ /app
WORKDIR /app
RUN apk add --no-cache openssl
# install node dependencies
RUN npm install
EXPOSE 8080