Brutale-api / Dockerfile
rohanshaw's picture
Upload 16 files
e557560 verified
raw
history blame contribute delete
231 Bytes
# /backend/Dockerfile
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
# Hugging Face expects the app to listen on port 7860
ENV PORT=7860
EXPOSE 7860
CMD ["node", "src/server.js"]