first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-09-26 13:50:01 -04:00
commit 7470750413
984 changed files with 180728 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM node:16-alpine
WORKDIR /frontend
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD npm run dev