Julep-API / Dockerfile
isididiidid's picture
Update Dockerfile
5c11c2e verified
raw
history blame contribute delete
271 Bytes
FROM node:16-slim
WORKDIR /app
# Copy package.json and package-lock.json
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY app.js ./
# Expose the port Hugging Face expects
EXPOSE 7860
# Start the application
CMD ["npm", "start"]