File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 66# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
77# OTHER DEALINGS IN THE SOFTWARE.
88
9- ARG VERSION=v1.8 .0
9+ ARG VERSION=v2.1 .0
1010ARG REPO=https://github.com/cryptoadvance/specter-desktop
1111ARG USER=specter
1212ARG DIR=/data/
1313
14- FROM python:3.10-slim-bullseye AS builder
14+ FROM python:3.10-bookworm AS builder
1515
1616ARG VERSION
1717ARG REPO
1818
19- RUN apt update && apt install -y git build-essential libusb-1.0-0-dev libudev-dev libffi-dev libssl-dev rustc cargo
19+ RUN apt update && apt install -y git libusb-1.0-0-dev libudev-dev libffi-dev libssl-dev rustc cargo
2020
2121WORKDIR /
2222
@@ -25,13 +25,14 @@ RUN git clone $REPO
2525WORKDIR /specter-desktop
2626
2727RUN git checkout $VERSION
28- RUN sed -i "s/vx.y.z-get-replaced-by-release-script/${VERSION}/g; " setup.py
2928RUN pip3 install --upgrade pip
3029RUN pip3 install babel cryptography
31- RUN pip3 install .
3230
31+ RUN pip3 install -r requirements.txt
32+ RUN pip3 install . --no-deps
3333
34- FROM python:3.10-slim-bullseye as final
34+
35+ FROM python:3.10-slim-bookworm as final
3536
3637ARG USER
3738ARG DIR
You can’t perform that action at this time.
0 commit comments