This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
xray-scraper/Dockerfile
2024-05-11 09:25:01 +02:00

13 lines
197 B
Docker

FROM node:18 as builder
WORKDIR /app
COPY package*.json yarn.lock ./
RUN yarn install --production
COPY . .
EXPOSE 3000
CMD ["bash", "-c", "yarn db:generate && yarn db:migrate && yarn start"]