Skip to content

Commit 932f4a4

Browse files
committed
Add custom F3D and VTK alpine packages built by Manyfold project
1 parent a24536e commit 932f4a4

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@ RUN \
4444
postgresql-dev \
4545
ruby-dev \
4646
yaml-dev && \
47+
echo "**** install manyfold F3D and VTK packages ****" && \
48+
curl -s -o \
49+
/tmp/f3d.apk -L \
50+
"https://github.com/manyfold3d/f3d-alpine/releases/download/v3.4.1-r2/f3d-3.4.1-r2.x86_64.apk" && \
51+
curl -s -o \
52+
/tmp/vtk.apk -L \
53+
"https://github.com/manyfold3d/f3d-alpine/releases/download/v3.4.1-r1/vtk-9.5.2-r0.x86_64.apk" && \
54+
apk add --no-cache --allow-untrusted /tmp/f3d.apk /tmp/vtk.apk && \
55+
rm /tmp/f3d.apk /tmp/vtk.apk && \
4756
echo "**** install manyfold ****" && \
4857
mkdir -p /app/www && \
4958
if [ -z ${MANYFOLD_VERSION+x} ]; then \

Dockerfile.aarch64

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@ RUN \
4444
postgresql-dev \
4545
ruby-dev \
4646
yaml-dev && \
47+
echo "**** install manyfold F3D and VTK packages ****" && \
48+
curl -s -o \
49+
/tmp/f3d.apk -L \
50+
"https://github.com/manyfold3d/f3d-alpine/releases/download/v3.4.1-r2/f3d-3.4.1-r2.aarch64.apk" && \
51+
curl -s -o \
52+
/tmp/vtk.apk -L \
53+
"https://github.com/manyfold3d/f3d-alpine/releases/download/v3.4.1-r1/vtk-9.5.2-r0.aarch64.apk" && \
54+
apk add --no-cache --allow-untrusted /tmp/f3d.apk /tmp/vtk.apk && \
55+
rm /tmp/f3d.apk /tmp/vtk.apk && \
4756
echo "**** install manyfold ****" && \
4857
mkdir -p /app/www && \
4958
if [ -z ${MANYFOLD_VERSION+x} ]; then \

0 commit comments

Comments
 (0)