Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5ed6e43
Fixed Typo Errors in README.MD
NssGourav Oct 2, 2025
afd425f
Fixed typo error
NssGourav Oct 2, 2025
57c1700
Documentation for Leaderboard
Adez017 Oct 2, 2025
525f40f
Update Documentation.md
Adez017 Oct 2, 2025
902df17
Update Documentation.md
Adez017 Oct 2, 2025
d03538c
Update Documentation.md
Adez017 Oct 2, 2025
a538a0b
Update Documentation.md
Adez017 Oct 2, 2025
c1a8970
Update Documentation.md
Adez017 Oct 2, 2025
2988a22
Update Documentation.md
Adez017 Oct 2, 2025
db29d98
Update Documentation.md
Adez017 Oct 2, 2025
06ddbbf
Update Documentation.md
Adez017 Oct 2, 2025
05ac971
removed agolia implementation to fix vercel dep
sanjay-kv Oct 2, 2025
a19f451
issue-fixed-607
utkarshpathak14 Oct 1, 2025
91603a3
Add Python functions documentation
Shitanshukumar607 Oct 1, 2025
b69c11b
fix Docusaurus found broken anchors!
Shitanshukumar607 Oct 1, 2025
f0ac5c5
fixed vercel fail, updated docker package version
sanjay-kv Oct 2, 2025
3cd86d5
Update docker-compose.yml
ishitaajain-coder Oct 2, 2025
697bd4f
Update Dockerfile
ishitaajain-coder Oct 2, 2025
686955e
Update package.json
ishitaajain-coder Oct 2, 2025
c09d700
Update README.md
ishitaajain-coder Oct 2, 2025
3b8e9b6
docs(python): add detailed chapter on Recursion in Python
codewithdhruba01 Oct 2, 2025
d99b5f7
feat: Add documentation for Exception Handling
Yash456k Oct 2, 2025
3de0781
Fix PR Modal
Adez017 Oct 2, 2025
ad1b21c
Fixes typo of RecodHive to Recode Hive
gmarav05 Oct 2, 2025
e7e0360
fixed issue#659
Condition00 Oct 2, 2025
5c43e82
docs(python): add new chapter on Object-Oriented Programming (OOPs) i…
codewithdhruba01 Oct 2, 2025
b251d06
Fixes typo "begineer" to "beginner"
gmarav05 Oct 2, 2025
adca2b0
Fixes live contributors count font dynamically
gmarav05 Oct 2, 2025
4f6c5a2
Changes
NssGourav Oct 3, 2025
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
12 changes: 3 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
FROM node:18-alpine AS builder
FROM node:20-alpine

# Set working directory inside the container
WORKDIR /app

COPY package*.json ./

# Install dependencies with legacy peer deps fix
RUN npm install --legacy-peer-deps

COPY . .
RUN npm run build

# Production Image
FROM node:18-alpine
WORKDIR /app
COPY --from=builder /app /app
# No need to run 'npm run build' for development-mode Docker
EXPOSE 3000

CMD ["npm", "run","serve"]
CMD [ "npm", "run", "dev" ]
Loading