Files
alphane.ca/web/development.Dockerfile
2026-06-19 23:55:39 -07:00

12 lines
179 B
Docker

FROM node:24.15.0-alpine3.23
RUN npm i -g npm@11.14.1
WORKDIR /usr/src/web
COPY package*.json ./
RUN npm clean-install
CMD ["npm", "run", "start", "--", "--host", "0.0.0.0"]