boyinfuture's picture
project structure
8427d6e
raw
history blame contribute delete
159 Bytes
FROM node:20-alpine
WORKDIR /app
COPY ./frontend/package*.json ./
RUN npm install
COPY ./frontend .
EXPOSE 5173
CMD ["npm", "run", "dev", "--", "--host"]