toolshed/deploy/dev/Dockerfile.frontend

14 lines
301 B
Docker
Raw Normal View History

2024-03-11 16:37:56 +00:00
# Use an official Node.js runtime as instance_a parent image
FROM node:14
# Set work directory
WORKDIR /app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
COPY package.json ./
RUN npm install
CMD [ "npm", "run", "dev", "--", "--host"]