hello world, vagrantrc qol

This commit is contained in:
Josh Burman
2021-08-12 12:32:44 -04:00
parent 9cbe38140d
commit 066ced8678
4 changed files with 19 additions and 5 deletions

View File

@ -9,5 +9,12 @@ RUN cd Cbc-2.9.8 && \
./configure && \
make && \
make install
RUN python -m pip install -U Flask
CMD tail -f /dev/null
# Bundle app source
COPY . /app
WORKDIR /app/app
# CMD tail -f /dev/null
CMD export FLASK_APP=main && flask run -p 80 --host=0.0.0.0