diff --git a/.github/workflows/Dockerfile b/.github/workflows/Dockerfile new file mode 100644 index 0000000..8653b92 --- /dev/null +++ b/.github/workflows/Dockerfile @@ -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"]