Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/devsecops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: DevSecOps Pipeline

on:
push:
branches: [main, develop]
branches: [main, develop, demo-vuln]
pull_request:
branches: [main]

Expand Down
4 changes: 1 addition & 3 deletions quess_front/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ COPY . .
RUN npm run build

# Stage 2: Serve with nginx
FROM nginx:alpine

RUN apk upgrade --no-cache
FROM nginx:1.16

COPY --from=builder /app/build /usr/share/nginx/html

Expand Down
54 changes: 47 additions & 7 deletions quess_front/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions quess_front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"dotenv": "^16.4.5",
"formik": "^2.4.5",
"mui-tiptap": "^1.8.7",
"node-forge": "^0.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
Expand Down
Loading