HeatTransPlan / frontend /Dockerfile
drzg15's picture
Initial code commit with LFS for binaries
c993983
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 5173
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0", "--port", "5173"]