docker file update

This commit is contained in:
VinceC
2025-01-04 11:45:46 -06:00
parent 93679f8828
commit fb718c47f0
2 changed files with 27 additions and 7 deletions

View File

@@ -1,20 +1,35 @@
# Use an official Node runtime as the parent image # Use an official Node runtime as the parent image
FROM node:18 FROM node:18-slim
# Set the working directory in the container # Create app directory
WORKDIR /usr/src/app WORKDIR /usr/src/app
# Copy package.json and package-lock.json # Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
COPY package*.json ./ COPY package*.json ./
# Install dependencies # Install dependencies
RUN npm install RUN npm ci --only=production
# Copy the rest of your app's source code # Bundle app source
COPY . . COPY . .
# Your app binds to port 3000 so you'll use the EXPOSE instruction to have it mapped by the docker daemon # Create a non-root user
RUN addgroup --system --gid 1001 nodejs && \
adduser --system --uid 1001 --ingroup nodejs nodejs && \
chown -R nodejs:nodejs /usr/src/app
USER nodejs
# Your app binds to port 3000
EXPOSE 3000 EXPOSE 3000
# Define the command to run your app # Add healthcheck
HEALTHCHECK --interval=30s --timeout=3s \
CMD curl -f http://localhost:3000/health || exit 1
# Define environment variable
ENV NODE_ENV=production
# Start the app
CMD [ "node", "index.js" ] CMD [ "node", "index.js" ]

View File

@@ -55,3 +55,8 @@ process.on('SIGTERM', async () => {
process.exit(1); process.exit(1);
} }
}); });
// Add health check endpoint
app.get('/health', (req, res) => {
res.status(200).json({ status: 'healthy' });
});