mirror of
https://github.com/SrIzan10/vinci.git
synced 2026-06-06 01:07:00 +00:00
28 lines
439 B
Docker
28 lines
439 B
Docker
FROM node:lts
|
|
|
|
RUN echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections
|
|
RUN apt-get update && \
|
|
apt-get install -y build-essential \
|
|
wget \
|
|
python3 \
|
|
make \
|
|
gcc \
|
|
libc6-dev \
|
|
bash \
|
|
ffmpeg \
|
|
msttcorefonts-installer \
|
|
fontconfig
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm i
|
|
|
|
EXPOSE 7272
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
CMD node ./dist/index.js |