add dockerfile.frontend

This commit is contained in:
2026-03-12 16:51:48 +08:00
parent 5e2a86e3be
commit a26cda2f04

View File

@@ -0,0 +1,11 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
CMD ["ls", "dist"]