Files
meshtastic-map/Dockerfile
Anton Roslund 9eae1d21b6 Fix Dockerfiler
2025-09-28 20:23:18 +02:00

15 lines
281 B
Docker

FROM node:lts-alpine
WORKDIR /app
RUN apk add --no-cache openssl
# 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 the source
COPY . .
EXPOSE 8080