Add Dockerfile for Node.js application
This commit is contained in:
parent
0a623e6d14
commit
04a0358dd6
19
.github/workflows/Dockerfile
vendored
Normal file
19
.github/workflows/Dockerfile
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
FROM node:18-alpine
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Copy package files
|
||||||
|
COPY package*.json ./
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
RUN npm ci --only=production
|
||||||
|
|
||||||
|
# Copy application code
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
# Build if needed
|
||||||
|
RUN npm run build --if-present
|
||||||
|
|
||||||
|
EXPOSE 3000
|
||||||
|
|
||||||
|
CMD ["npm", "start"]
|
||||||
Loading…
x
Reference in New Issue
Block a user