Upload files to "build"

This commit is contained in:
2026-01-19 12:16:59 +00:00
parent c0c612e1d8
commit d85d24ab17

13
build/dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:18-alpine
WORKDIR /app
#COPY package*.json ./
RUN npm config set registry https://mirror-npm.runflare.com
RUN npm install -g serve
COPY . .
EXPOSE 3000
CMD ["serve"]