Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -7,6 +7,9 @@ RUN curl -sL https://deb.nodesource.com/setup_22.x | bash -
|
|
| 7 |
RUN apt-get install -y nodejs
|
| 8 |
RUN git clone https://github.com/mustafanqnq-cmd/Sarmadi-Deploy-Web.git .
|
| 9 |
RUN pip install --no-cache-dir flask requests aiohttp gitpython heroku3
|
|
|
|
|
|
|
|
|
|
| 10 |
ENV PATH=/app:$PATH
|
| 11 |
EXPOSE 8080
|
| 12 |
CMD bash -c "python3 app.py & bash ba.sh"
|
|
|
|
| 7 |
RUN apt-get install -y nodejs
|
| 8 |
RUN git clone https://github.com/mustafanqnq-cmd/Sarmadi-Deploy-Web.git .
|
| 9 |
RUN pip install --no-cache-dir flask requests aiohttp gitpython heroku3
|
| 10 |
+
RUN git clone https://github.com/mustafanqnq-cmd/Tython.git /tmp/tython_req && \
|
| 11 |
+
pip install --no-cache-dir -r /tmp/tython_req/requirements.txt && \
|
| 12 |
+
rm -rf /tmp/tython_req
|
| 13 |
ENV PATH=/app:$PATH
|
| 14 |
EXPOSE 8080
|
| 15 |
CMD bash -c "python3 app.py & bash ba.sh"
|