Add kubernetes deployment specs

This commit is contained in:
2022-06-25 20:55:06 -05:00
parent 04ea16743d
commit 562ada3af5
10 changed files with 339 additions and 3 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM node:14
RUN mkdir /app
COPY package.json /app
COPY yarn.lock /app
RUN cd /app && yarn install
COPY . /app
RUN rm -rf /app/.env
RUN touch /app/.env
WORKDIR /app
CMD ["node", "index.js"]