Files
calebburke.dev/web/development.Dockerfile
T
2026-06-24 23:47:55 -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"]