forked from pantor/frankx
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved dependency_versions into docker/common/
- Loading branch information
1 parent
adb4fd8
commit a9f6b89
Showing
6 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,9 @@ LABEL maintainer="Tim Schneider <[email protected]>" | |
|
||
RUN yum -y install poco-devel* | ||
|
||
ADD dependency_versions /tmp/ | ||
ADD docker/common/ /tmp/common/ | ||
ARG LIBFRANKA_VERSION | ||
RUN set -a && . /tmp/dependency_versions && set +a \ | ||
&& /tmp/common/install-dependencies | ||
RUN /tmp/common/install-dependencies | ||
|
||
ARG PYBIN_SUPPORTED_VERSIONS="cp3(7m|8|9|10|11|12)" | ||
# Preserve argument for runtime | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
manylinux-build-wheels /code |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,9 @@ LABEL maintainer="Tim Schneider <[email protected]>" | |
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update && apt-get -y install build-essential cmake git libpoco-dev catch2 python3-dev | ||
|
||
ADD dependency_versions /tmp/ | ||
ADD docker/common/ /tmp/common/ | ||
ARG LIBFRANKA_VERSION | ||
RUN set -a && . /tmp/dependency_versions && set +a \ | ||
&& /tmp/common/install-dependencies | ||
RUN /tmp/common/install-dependencies | ||
|
||
RUN git clone https://github.com/TimSchneider42/franky.git --recurse-submodules \ | ||
&& cd franky \ | ||
|