Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Archi to 5.2.0, add UTF-8 support #21

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ RUN set -eux; \
apt-get update; \
apt-get install -y \
ca-certificates \
language-pack-en-base \
libgtk2.0-cil \
libswt-gtk-4-jni \
dbus-x11 \
Expand All @@ -24,13 +25,15 @@ RUN set -eux; \
update-ca-certificates; \
rm -rf /var/lib/apt/lists/*

ENV LANG=en_US.UTF-8

FROM base AS archi
ARG ARCHI_VERSION=5.0.2

# Download & extract Archimate tool
RUN set -eux; \
curl -#Lo archi.tgz \
"https://www.archimatetool.com/downloads/archi.php?/$ARCHI_VERSION/Archi-Linux64-$ARCHI_VERSION.tgz"; \
"https://www.archimatetool.com/downloads/archi-5.php?/$ARCHI_VERSION/Archi-Linux64-$ARCHI_VERSION.tgz"; \
tar zxf archi.tgz -C /opt/; \
rm archi.tgz; \
chmod +x /opt/Archi/Archi; \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.rootless
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG ARCHIMATE_CI_IMAGE=ghcr.io/woozymasta/archimate-ci-image
ARG ARCHIMATE_CI_VERSION=5.0.2-1.0.4
ARG ARCHIMATE_CI_VERSION=5.2.0

FROM $ARCHIMATE_CI_IMAGE:$ARCHIMATE_CI_VERSION AS base

Expand Down