FROM node:18-alpine

# Install ffmpeg
RUN apk add --no-cache ffmpeg

WORKDIR /app

COPY server.js .

EXPOSE 3001

CMD ["node", "server.js"]