Add kubernetes deployment specs

This commit is contained in:
2022-06-25 21:42:00 -05:00
parent 3406e1c4cb
commit c72b57a0f8
8 changed files with 215 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
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"]