File tree 4 files changed +13
-12
lines changed
4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ services:
5
5
build :
6
6
context : .
7
7
dockerfile : docker/Dockerfile
8
- command : sh -c 'bash -c "tail -f /dev/null "'
8
+ command : sh -c 'bash -c "docker/setup.sh "'
9
9
volumes :
10
10
- ../seedsigner:/seedsigner
Original file line number Diff line number Diff line change @@ -4,20 +4,17 @@ FROM python:3.10-bullseye
4
4
RUN apt-get -qq update
5
5
RUN apt-get -y -qq install zbar-tools
6
6
7
- # temp add/copy seedsigner local repo to do pip3 install
8
- ADD . /seedsigner
9
- WORKDIR /seedsigner
10
-
11
- # COPY ../requirements.txt /requirements.txt
12
- # COPY ../tests/requirements.txt /tests-requirements.txt
7
+ # temp copy requirements files to local repo to do pip3 install
8
+ COPY ../requirements.txt /requirements.txt
9
+ COPY ../tests/requirements.txt /tests-requirements.txt
13
10
11
+ WORKDIR /
14
12
RUN pip3 install -r requirements.txt
15
- RUN pip3 install -r tests/requirements.txt
16
- RUN pip3 install -e .
13
+ RUN pip3 install -r tests-requirements.txt
17
14
18
15
# clean up copied files
19
- WORKDIR /
20
- RUN rm -r /seedsigner
16
+ RUN rm /requirements.txt
17
+ RUN rm /tests-requirements.txt
21
18
22
19
# set working dir
23
20
WORKDIR /seedsigner
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ pip3 install -e .
4
+ tail -f /dev/null
Original file line number Diff line number Diff line change 1
1
embit == 0.7.0
2
2
numpy == 1.21.1
3
3
Pillow == 8.2.0
4
- -e git+https://github.com/seedsigner/pyzbar.git@c3c237821c6a20b17953efe59b90df0b514a1c03#egg=pyzbar
4
+ pyzbar @ git+https://github.com/seedsigner/pyzbar.git@c3c237821c6a20b17953efe59b90df0b514a1c03
5
5
qrcode == 7.3.1
6
6
six == 1.16.0
7
7
urtypes @ git+https://github.com/selfcustody/urtypes.git@7fb280eab3b3563dfc57d2733b0bf5cbc0a96a6a
You can’t perform that action at this time.
0 commit comments