Skip to content

Commit

Permalink
[FIX] Fixed arch
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisBurger committed Oct 7, 2024
1 parent 936da93 commit e2b1761
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion authy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN rm ./target/release/deps/authy*
RUN cargo build --release

FROM gcr.io/distroless/cc-debian12
ARG ARCH=amd64
ARG ARCH=x86_64

COPY --from=build /usr/lib/${ARCH}-linux-gnu/libpq.so* /usr/lib/${ARCH}-linux-gnu/
COPY --from=build /usr/lib/${ARCH}-linux-gnu/libgssapi_krb5.so* /usr/lib/${ARCH}-linux-gnu/
Expand Down
2 changes: 1 addition & 1 deletion tasky/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ENV IS_DOCKER="true"
RUN cargo build --release

FROM gcr.io/distroless/cc-debian12
ARG ARCH=arm64
ARG ARCH=x86_64

COPY --from=build /usr/lib/${ARCH}-linux-gnu/libpq.so* /usr/lib/${ARCH}-linux-gnu/
COPY --from=build /usr/lib/${ARCH}-linux-gnu/libgssapi_krb5.so* /usr/lib/${ARCH}-linux-gnu/
Expand Down

0 comments on commit e2b1761

Please sign in to comment.