meshtastic-map/Dockerfile

15 lines
281 B
Text
Raw Normal View History

2025-09-28 20:23:18 +02:00
FROM node:lts-alpine
WORKDIR /app
2024-06-15 14:50:45 +12:00
2025-09-28 20:23:18 +02:00
RUN apk add --no-cache openssl
2025-08-06 21:43:14 +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* ./
2025-09-28 20:23:18 +02:00
RUN npm ci
2025-08-06 21:43:14 +02:00
2025-09-28 20:23:18 +02:00
# Copy the rest of the source
2025-08-06 21:43:14 +02:00
COPY . .
EXPOSE 8080