Skip to content

Commit dd9132b

Browse files
authored
Merge pull request #13 from msgflo/python3
Switch to Python 3
2 parents 9c9fb09 + e9284c1 commit dd9132b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ RUN npm install
1717

1818
# Install msgflo-python
1919
RUN apt-get update && apt-get install -y \
20-
python \
21-
python-dev \
22-
python-pip
23-
RUN pip install -r requirements.txt
20+
python3 \
21+
python3-dev \
22+
python3-pip
23+
RUN pip3 install -r requirements.txt
2424

2525
# Map the volumes
2626
VOLUME /var/app/graphs /var/app/components

Dockerfile-raspberrypi3

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ RUN npm install
1717

1818
# Install msgflo-python
1919
RUN apt-get update && apt-get install -y \
20-
python \
21-
python-dev \
22-
python-pip
23-
RUN pip install -r requirements.txt
20+
python3 \
21+
python3-dev \
22+
python3-pip
23+
RUN pip3 install -r requirements.txt
2424

2525
# Map the volumes
2626
VOLUME /var/app/graphs /var/app/components

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msgflo>=0.1.1
1+
msgflo>=0.2.2

0 commit comments

Comments
 (0)