Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -3,14 +3,15 @@ FROM python:3.11
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
# Install system dependencies including Redis server
|
|
|
|
|
|
|
6 |
RUN apt-get update && apt-get install -y \
|
7 |
redis-server \
|
8 |
nodejs \
|
9 |
curl \
|
10 |
&& rm -rf /var/lib/apt/lists/*
|
11 |
|
12 |
-
# Install Node.js for frontend build
|
13 |
-
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
|
14 |
|
15 |
# Copy and install Python dependencies
|
16 |
COPY requirements.txt .
|
|
|
3 |
WORKDIR /app
|
4 |
|
5 |
# Install system dependencies including Redis server
|
6 |
+
|
7 |
+
# Install Node.js for frontend build
|
8 |
+
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
|
9 |
RUN apt-get update && apt-get install -y \
|
10 |
redis-server \
|
11 |
nodejs \
|
12 |
curl \
|
13 |
&& rm -rf /var/lib/apt/lists/*
|
14 |
|
|
|
|
|
15 |
|
16 |
# Copy and install Python dependencies
|
17 |
COPY requirements.txt .
|