perplexica/backend.dockerfile

18 lines
386 B
Plaintext
Raw Normal View History

2024-10-18 06:20:56 +00:00
FROM node:18-slim
2024-04-09 10:51:05 +00:00
WORKDIR /home/perplexica
COPY src /home/perplexica/src
COPY tsconfig.json /home/perplexica/
COPY drizzle.config.ts /home/perplexica/
2024-04-09 10:51:05 +00:00
COPY package.json /home/perplexica/
COPY yarn.lock /home/perplexica/
RUN mkdir /home/perplexica/data
2024-10-18 06:45:04 +00:00
RUN yarn config set registry https://registry.npmjs.org/
RUN yarn install --frozen-lockfile
2024-04-09 10:51:05 +00:00
RUN yarn build
CMD ["yarn", "start"]