underrate commited on
Commit
4372bf0
ยท
verified ยท
1 Parent(s): 2d5196c

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -1,8 +1,9 @@
1
  FROM node:22-slim
2
 
3
- # Install system dependencies
4
  RUN apt-get update && apt-get install -y \
5
  curl \
 
6
  python3 \
7
  build-essential \
8
  && rm -rf /var/lib/apt/lists/*
 
1
  FROM node:22-slim
2
 
3
+ # Install system dependencies including git
4
  RUN apt-get update && apt-get install -y \
5
  curl \
6
+ git \
7
  python3 \
8
  build-essential \
9
  && rm -rf /var/lib/apt/lists/*