mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-02-02 09:35:39 -05:00
Initial commit of calendar service
This commit is contained in:
15
Calendar/Service/dockerfile
Normal file
15
Calendar/Service/dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user