Update Dockerfile
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
@@ -15,8 +15,10 @@ COPY ./start.sh /code/start.sh
|
|
15 |
|
16 |
COPY . .
|
17 |
|
18 |
-
RUN
|
|
|
|
|
19 |
|
20 |
-
RUN
|
21 |
|
22 |
-
CMD ["
|
|
|
15 |
|
16 |
COPY . .
|
17 |
|
18 |
+
RUN ls .
|
19 |
+
|
20 |
+
RUN ls /code
|
21 |
|
22 |
+
RUN pip install -r /code/requirements.txt
|
23 |
|
24 |
+
CMD ["python", "main.py", "&", "python", "checker.py", "&"]
|