Open source omnivore

This commit is contained in:
Jackson Harper
2022-02-11 09:24:33 -08:00
parent b5a6008f76
commit 84f32935f5
1485 changed files with 188409 additions and 0 deletions

18
pkg/admin/Dockerfile Normal file
View File

@ -0,0 +1,18 @@
FROM node:14.18-alpine
WORKDIR /app
COPY package.json .
COPY yarn.lock .
RUN yarn install --frozen-lockfile
COPY . .
RUN NODE_ENV=production yarn build
ENV PORT=8080
EXPOSE 8080
ENV NODE_ENV production
CMD yarn start