Files
discord-audio-transcriptor/Dockerfile
2023-05-01 13:24:24 +02:00

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