Skip to content

Commit 494e50d

Browse files
committed
Update Dockerfile
1 parent 2bd51ca commit 494e50d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ RUN apt-get update && \
1111
WORKDIR /app
1212

1313
# Copy requirements first to leverage Docker cache
14-
COPY flask_app/requirements.txt .
14+
COPY requirements.txt .
1515

1616
# Install dependencies
1717
RUN pip install --no-cache-dir -r requirements.txt
1818

19-
# Copy Flask application
20-
COPY flask_app/ .
19+
# Copy application files
20+
COPY . .
2121

2222
# Create directory for Redis data
2323
RUN mkdir -p /data/redis

0 commit comments

Comments
 (0)