Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine:3.23
FROM ghcr.io/linuxserver/baseimage-alpine:3.24

ARG BUILD_DATE
ARG VERSION
Expand All @@ -18,10 +18,11 @@ ENV RAILS_ENV="production" \
APP_VERSION=${MANYFOLD_VERSION} \
HOME=/config

COPY --from=ruby:3.4.9-alpine3.23 /usr/local /usr/local/
COPY --from=ruby:3.4.9-alpine3.24 /usr/local /usr/local/

RUN \
apk add --no-cache \
alembic-libs \
assimp-dev \
file \
gcompat \
Expand All @@ -30,12 +31,16 @@ RUN \
imagemagick-heic \
imagemagick-jpeg \
imagemagick-webp \
imath \
jemalloc \
libarchive \
libucontext \
mariadb-connector-c \
opencascade \
openexr-libopenexr \
pciutils \
postgresql16-client \
vtk \
yaml && \
apk add --no-cache --virtual=build-dependencies \
build-base \
Expand All @@ -47,12 +52,6 @@ RUN \
npm \
postgresql-dev \
yaml-dev && \
apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \
vtk \
opencascade \
imath \
alembic-libs \
openexr-libopenexr && \
echo "**** install manyfold F3D package ****" && \
curl -s -o \
/tmp/f3d.apk -L \
Expand Down
15 changes: 7 additions & 8 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.23
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.24

ARG BUILD_DATE
ARG VERSION
Expand All @@ -18,10 +18,11 @@ ENV RAILS_ENV="production" \
APP_VERSION=${MANYFOLD_VERSION} \
HOME=/config

COPY --from=ruby:3.4.9-alpine3.23 /usr/local /usr/local/
COPY --from=ruby:3.4.9-alpine3.24 /usr/local /usr/local/

RUN \
apk add --no-cache \
alembic-libs \
assimp-dev \
file \
gcompat \
Expand All @@ -30,12 +31,16 @@ RUN \
imagemagick-heic \
imagemagick-jpeg \
imagemagick-webp \
imath \
jemalloc \
libarchive \
libucontext \
mariadb-connector-c \
opencascade \
openexr-libopenexr \
pciutils \
postgresql16-client \
vtk \
yaml && \
apk add --no-cache --virtual=build-dependencies \
build-base \
Expand All @@ -47,12 +52,6 @@ RUN \
npm \
postgresql-dev \
yaml-dev && \
apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \
vtk \
opencascade \
imath \
alembic-libs \
openexr-libopenexr && \
echo "**** install manyfold F3D package ****" && \
curl -s -o \
/tmp/f3d.apk -L \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **05.07.26:** - Rebase to Alpine 3.24.
* **13.01.26:** - Rebase to Alpine 3.23.
* **08.10.25:** - Change key init to auto generate and persist.
* **27.07.25:** - Rebase to Alpine 3.22.
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ init_diagram: |
"manyfold:latest" <- Base Images
# changelog
changelogs:
- {date: "05.07.26:", desc: "Rebase to Alpine 3.24."}
- {date: "13.01.26:", desc: "Rebase to Alpine 3.23."}
- {date: "08.10.25:", desc: "Change key init to auto generate and persist."}
- {date: "27.07.25:", desc: "Rebase to Alpine 3.22."}
Expand Down