File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,7 @@ RUN yum -y install --disableplugin=subscription-manager wget \
10
10
&& yum --disableplugin=subscription-manager clean all
11
11
12
12
RUN pip3 install pipenv
13
- RUN pipenv install --deploy
14
- RUN pipenv lock -r > requirements.txt && pip3 install -r requirements.txt
13
+ RUN pipenv install --dev
15
14
16
15
# Update python command to point to python3 install
17
16
RUN alternatives --set python /usr/bin/python3
@@ -29,3 +28,5 @@ ARG bx_dev_userid=1000
29
28
RUN BX_DEV_USER=$bx_dev_user
30
29
RUN BX_DEV_USERID=$bx_dev_userid
31
30
RUN if [ "$bx_dev_user" != root ]; then useradd -ms /bin/bash -u $bx_dev_userid $bx_dev_user; fi
31
+
32
+ CMD ["/bin/bash"]
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# Simple shell script to run application in dev mode
3
- python manage.py livereload
3
+ pipenv run python manage.py livereload
You can’t perform that action at this time.
0 commit comments