We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bedee50 commit 49767edCopy full SHA for 49767ed
1 file changed
contribs/generic-app.yaml
@@ -109,25 +109,19 @@ structure:
109
- .github/dependabot.yml:
110
file: https://raw.githubusercontent.com/bitnami/charts/main/.github/dependabot.yml
111
- Dockerfile:
112
- content:
+ content: |
113
# Use an official Node.js runtime as the base image
114
FROM node:14
115
-
116
# Set the working directory in the container
117
WORKDIR /app
118
119
# Copy package.json and package-lock.json
120
COPY package*.json ./
121
122
# Install Node.js dependencies
123
RUN npm install
124
125
# Copy the application code
126
COPY . .
127
128
# Expose the port the app runs on
129
EXPOSE 3000
130
131
# Run the application
132
CMD ["npm", "start"]
133
- .dockerignore:
0 commit comments