Skip to content
This repository was archived by the owner on Aug 30, 2025. It is now read-only.

Commit 1448f96

Browse files
Add APPIMAGE_EXTRACT_AND_RUN to ENV of all images since this is required to run any appimage in a docker container.
1 parent 966bc3f commit 1448f96

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Changed the naev-ubuntu2004 and naev-ubuntu1604 names to more distro-agnostic ones (naev-linux-latest and naev-linux-lts respectively).
33
Changed naev-linux-lts image base to centos:7 (Additionally remove ruby and website generation tools from image.)
44
Add suitesparse to naev-linux-lts image (previously ommitted due to packaging issues)
5+
Add APPIMAGE_EXTRACT_AND_RUN to ENV of all images since this is required to run any appimage in a docker container.
56

67
### v1.3.2:
78
Pinned the version of Meson to use in Ubuntu 16.04.

naev/naev-linux-latest/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ RUN apt-get clean && \
5252
rm -rf /var/lib/apt/lists/* && \
5353
rm -rf /tmp/naev-website
5454

55+
# Force appimages to run in extract mode since FUSE is not available
56+
ENV APPIMAGE_EXTRACT_AND_RUN 1
57+
5558
# Set WORKDIR when you spin up the image.
5659
RUN mkdir -p /tmp/naevBuild
5760
WORKDIR /tmp/naevBuild

naev/naev-macos/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ RUN rmdir /opt && ln -s /usr/lib/osxcross/macports/pkgs/opt /opt
6060
# Set $HOST for use with bundle.py.
6161
ENV HOST "x86_64-apple-darwin17"
6262

63+
# Force appimages to run in extract mode since FUSE is not available
64+
ENV APPIMAGE_EXTRACT_AND_RUN 1
65+
6366
# Set WORKDIR when you spin up the image.
6467
RUN mkdir -p /tmp/naevBuild
6568
WORKDIR /tmp/naevBuild

naev/naev-windows/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ RUN python3 -m pip install meson && \
6060
RUN apt-get clean && \
6161
rm -rf /var/lib/apt/lists/*
6262

63+
# Force appimages to run in extract mode since FUSE is not available
64+
ENV APPIMAGE_EXTRACT_AND_RUN 1
65+
6366
# Set WORKDIR when you spin up the image.
6467
RUN mkdir -p /tmp/naevBuild
6568
WORKDIR /tmp/naevBuild

0 commit comments

Comments
 (0)