Upload Dockerfile
Browse files- 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 |
-
#
|
8 |
-
|
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 ./
|