-
Notifications
You must be signed in to change notification settings - Fork 24
/
Dockerfile
38 lines (27 loc) · 1.05 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
FROM jrottenberg/ffmpeg:5.1-ubuntu2204 AS ffmpeg
FROM node:18-bookworm-slim AS base
# Install ffmpeg
COPY --from=ffmpeg / /
RUN apt-get update -qq
RUN apt-get install -qq libavdevice59 >/dev/null
# Create app directory
ENV NODE_APP_DIR=/var/www/api/src \
NODE_ENV=production
WORKDIR /var/www/api
# Prepare [email protected] (this should match the version in package.json)
RUN corepack enable
RUN corepack prepare [email protected] --activate
COPY package.json yarn.lock .yarnrc.yml .
COPY prisma/package.json ./prisma/package.json
COPY client/package.json ./client/package.json
RUN --mount=type=cache,target=/root/.yarn,sharing=locked YARN_CACHE_FOLDER=/root/.yarn yarn install --immutable
COPY prisma ./prisma
RUN yarn prisma:build
COPY . .
EXPOSE 3000
FROM base AS api
CMD [ "/bin/sh", "-c", "yarn prisma:migrate:deploy && yarn ts-node src/index.ts" ]
HEALTHCHECK --interval=10s --timeout=5s --retries=10 CMD ["yarn", "ts-node", "src/healthcheck.ts"]
FROM base AS background
CMD [ "yarn", "ts-node", "src/jobs/queue-worker.ts", "run"]
HEALTHCHECK --interval=10s CMD ["true"]