adding docker stuff

This commit is contained in:
talksik
2022-06-02 11:25:24 -05:00
parent 5f644c94ba
commit e8cad2e204
5 changed files with 48 additions and 30 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM node:12
WORKDIR /app
COPY package.json ./
COPY ../core ./packages
RUN yarn install
COPY . .
ENV PORT=8080
ENV NODE_ENV=production
EXPOSE 8080
CMD ["yarn", "production"]