Skip to content

Commit

Permalink
Add manylinux arm64 wheel for pyord, + casing fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
koirikivi committed Sep 30, 2024
1 parent d0c6848 commit b07cf68
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions bridge_node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim-bookworm as base
FROM python:3.11-slim-bookworm AS base

WORKDIR /srv/bridge_backend

Expand All @@ -14,7 +14,7 @@ RUN apt-get update -y && apt-get --no-install-recommends -y install \
libsecp256k1-dev \
&& rm -rf /var/lib/apt/lists/*

FROM base as builder
FROM base AS builder

RUN apt-get update -y && apt-get --no-install-recommends -y install \
libpq-dev \
Expand All @@ -36,7 +36,7 @@ COPY . .
RUN poetry build && ./.venv/bin/pip install dist/*.whl

# Discard build stage and only copy the packages to the final image
FROM base as final
FROM base AS final

COPY --from=builder /srv/bridge_backend/.venv ./.venv
COPY --from=builder /srv/bridge_backend/dist .
Expand Down
1 change: 1 addition & 0 deletions bridge_node/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docker/ord/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Forked from https://github.com/ordinals/ord/blob/master/Dockerfile
FROM rust:1.76.0-bookworm as builder
FROM rust:1.76.0-bookworm AS builder

ARG ORD_GIT_CHECKOUT="0.18.2"
ARG ORD_GIT_URL="https://github.com/ordinals/ord"
Expand Down

0 comments on commit b07cf68

Please sign in to comment.