File size: 159 Bytes
			
			| 8427d6e | 1 2 3 4 5 6 7 8 9 10 11 12 13 | FROM node:20-alpine
WORKDIR /app
COPY ./frontend/package*.json ./
RUN npm install
COPY ./frontend .
EXPOSE 5173
CMD ["npm", "run", "dev", "--", "--host"] | 
| 8427d6e | 1 2 3 4 5 6 7 8 9 10 11 12 13 | FROM node:20-alpine
WORKDIR /app
COPY ./frontend/package*.json ./
RUN npm install
COPY ./frontend .
EXPOSE 5173
CMD ["npm", "run", "dev", "--", "--host"] |