Initial commit of calendar service

This commit is contained in:
2024-01-10 12:54:30 -05:00
parent 533cf84433
commit 2d779061cd
12 changed files with 3644 additions and 0 deletions

View File

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