Browse Source

update start.sh

Abdo Farag 3 years ago
parent
commit
ae37772638
2 changed files with 2 additions and 1 deletions
  1. 1 1
      Dockerfile
  2. 1 0
      start.sh

+ 1 - 1
Dockerfile

@@ -3,4 +3,4 @@ COPY . /app
 WORKDIR /app
 RUN pip install -r requirements.txt
 ENTRYPOINT ["python"]
-CMD ["app.py"]
+CMD ["app.py"]

+ 1 - 0
start.sh

@@ -1,4 +1,5 @@
 #!/bin/bash
+git pull
 app="baangt-testing"
 docker build -t ${app} .
 #docker run -tid -p 3003:3000 \