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