Create Dockerfile
Browse files- Dockerfile +23 -0
Dockerfile
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use the official Node.js 18 base image
|
| 2 |
+
FROM node:18-slim
|
| 3 |
+
|
| 4 |
+
# Set the working directory inside the container
|
| 5 |
+
WORKDIR /usr/src/app
|
| 6 |
+
|
| 7 |
+
# Copy the package.json and package-lock.json if available
|
| 8 |
+
COPY package*.json ./
|
| 9 |
+
|
| 10 |
+
# Install the app dependencies
|
| 11 |
+
RUN npm install --production
|
| 12 |
+
|
| 13 |
+
# Copy the rest of the application code to the container
|
| 14 |
+
COPY . .
|
| 15 |
+
|
| 16 |
+
# Set environment variable to production
|
| 17 |
+
ENV NODE_ENV=production
|
| 18 |
+
|
| 19 |
+
# Expose the port Hugging Face Spaces will bind to
|
| 20 |
+
EXPOSE 3000
|
| 21 |
+
|
| 22 |
+
# Command to start the app
|
| 23 |
+
CMD ["node", "index.js"]
|