Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
# Base image
|
2 |
FROM docker.elastic.co/elasticsearch/elasticsearch:8.6.2
|
3 |
|
|
|
|
|
|
|
4 |
WORKDIR /code
|
5 |
|
6 |
COPY ./requirements.txt /code/requirements.txt
|
7 |
-
|
8 |
-
# Install Python and dependencies
|
9 |
-
RUN apt-get update && apt-get install -y python3 python3-pip
|
10 |
RUN pip3 install -r requirements.txt
|
11 |
|
12 |
COPY . .
|
|
|
1 |
# Base image
|
2 |
FROM docker.elastic.co/elasticsearch/elasticsearch:8.6.2
|
3 |
|
4 |
+
# Install Python and dependencies
|
5 |
+
RUN apt-get update && apt-get install -y python3 python3-pip
|
6 |
+
|
7 |
WORKDIR /code
|
8 |
|
9 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
|
|
|
|
10 |
RUN pip3 install -r requirements.txt
|
11 |
|
12 |
COPY . .
|