You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
284 B

FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy application files
COPY server.js ./
COPY index.html ./
# Copy default.kml if it exists (optional)
COPY default.kml* ./
EXPOSE 8080
CMD ["node", "server.js"]