Skip to content

Commit 5b26e68

Browse files
remove redundant flask install
1 parent 1b2f202 commit 5b26e68

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
FROM python:3.11-slim
22

3-
RUN pip install Flask
4-
53
WORKDIR /app
64
COPY requirements.txt .
75

8-
RUN pip install -r requirements.txt
6+
RUN pip install --no-cache-dir -r requirements.txt
97

108
COPY ./test /app/test
119
COPY ./lib /app/lib

0 commit comments

Comments
 (0)