move LIT Header
This commit is contained in:
parent
b2a18c5a21
commit
23bf78e398
7 changed files with 214 additions and 140 deletions
|
|
@ -15,19 +15,11 @@ ADD requirements.txt .
|
|||
# pip install the local requirements.txt
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
<<<<<<< HEAD
|
||||
# now copy all the files in this directory to /app
|
||||
=======
|
||||
# now copy all the files in this directory to /code
|
||||
>>>>>>> main
|
||||
ADD . .
|
||||
|
||||
# Listen to port 80 at runtime
|
||||
EXPOSE 5000
|
||||
|
||||
# Define our command to be run when launching the container
|
||||
<<<<<<< HEAD
|
||||
ENTRYPOINT [ "/app/entrypoint.sh" ]
|
||||
=======
|
||||
CMD ["gunicorn", "app:app", "-b", "0.0.0.0:5000", "--workers", "4", "--reload", "--capture-output", "--enable-stdio-inheritance", "--log-level", "DEBUG"]
|
||||
>>>>>>> main
|
||||
|
|
|
|||
Reference in a new issue