saq1b commited on
Commit
234fccf
·
verified ·
1 Parent(s): a1c16bb

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -6
Dockerfile CHANGED
@@ -4,12 +4,8 @@ FROM node:21
4
  # Set the working directory in the container
5
  WORKDIR /app
6
 
7
- # # Install Python and pip
8
- # RUN apt-get update && apt-get install -y \
9
- # python3 \
10
- # python3-pip \
11
- # && rm -rf /var/lib/apt/lists/* \
12
- # && pip3 install --no-cache-dir --upgrade pip # Upgrade pip to the latest version
13
 
14
  # Copy package.json
15
  COPY package.json ./
 
4
  # Set the working directory in the container
5
  WORKDIR /app
6
 
7
+ # Install Python
8
+ RUN apt-get update && apt-get install -y python3 python3-pip
 
 
 
 
9
 
10
  # Copy package.json
11
  COPY package.json ./