- transcribeAWS.js: convert browser WebM/Opus → PCM 16kHz mono via ffmpeg before sending to AWS Transcribe — PCM is unambiguous and most reliable; gracefully falls back to ogg-opus if ffmpeg absent - Dockerfile: install ffmpeg (apk add ffmpeg) so Docker image works out of the box with AWS Transcribe - README: document Amazon Transcribe setup, ffmpeg requirement, Transcribe Medical specialty options, and env vars reference
21 lines
403 B
Docker
21 lines
403 B
Docker
FROM node:20-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# ffmpeg: audio conversion for AWS Transcribe (WebM → PCM)
|
|
RUN apk add --no-cache ffmpeg
|
|
|
|
COPY package.json ./
|
|
RUN npm install --omit=dev
|
|
|
|
COPY . .
|
|
|
|
RUN mkdir -p /app/data/logs
|
|
|
|
EXPOSE 3000
|
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=20s \
|
|
CMD wget --no-verbose --tries=1 --spider http://localhost:3000/api/health || exit 1
|
|
|
|
CMD ["node", "server.js"]
|
|
|