meshtastic-map/Dockerfile

16 lines
283 B
Text
Raw Permalink Normal View History

FROM node:lts-alpine
WORKDIR /app
2024-06-15 14:50:45 +12:00
2025-08-10 20:10:28 +02:00
# Copy only package files and install deps
# This layer will be cached as long as package*.json don't change
COPY package*.json package-lock.json* ./
RUN npm ci
# Copy the rest of your source
COPY . .
2025-04-25 17:29:45 +12:00
RUN apk add --no-cache openssl
2024-06-15 14:50:45 +12:00
2025-08-10 20:10:28 +02:00
EXPOSE 8080