Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -2,6 +2,6 @@ FROM python:3.11
|
|
2 |
WORKDIR /app
|
3 |
COPY . /app
|
4 |
RUN pip install --upgrade pip
|
5 |
-
RUN
|
6 |
EXPOSE 8000
|
7 |
CMD ["python3", "-u", "app.py"]
|
|
|
2 |
WORKDIR /app
|
3 |
COPY . /app
|
4 |
RUN pip install --upgrade pip
|
5 |
+
RUN pip install -r requirements.txt
|
6 |
EXPOSE 8000
|
7 |
CMD ["python3", "-u", "app.py"]
|