mirror of
https://github.com/SrIzan10/discord-audio-transcriptor.git
synced 2026-06-06 00:56:47 +00:00
16 lines
188 B
Docker
16 lines
188 B
Docker
FROM node:alpine
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apk add make g++ ffmpeg bash sdl2-dev
|
|
RUN bash ./util/setup.sh
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN tsc --build
|
|
|
|
RUN node dist/index.js |