Files
map/Dockerfile
Matt 0db06f154a
All checks were successful
Build Docker containers / Build (push) Successful in 35s
use regular node image
2025-04-10 23:40:20 -04:00

11 lines
126 B
Docker

FROM node:lts
# add project files to /app
ADD ./ /app
WORKDIR /app
# install node dependencies
RUN npm install
EXPOSE 8080