This repository was archived by the owner on Aug 30, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +10
-0
lines changed
Expand file tree Collapse file tree 4 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 22Changed the naev-ubuntu2004 and naev-ubuntu1604 names to more distro-agnostic ones (naev-linux-latest and naev-linux-lts respectively).
33Changed naev-linux-lts image base to centos:7 (Additionally remove ruby and website generation tools from image.)
44Add 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:
78Pinned the version of Meson to use in Ubuntu 16.04.
Original file line number Diff line number Diff 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.
5659RUN mkdir -p /tmp/naevBuild
5760WORKDIR /tmp/naevBuild
Original file line number Diff line number Diff 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.
6161ENV 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.
6467RUN mkdir -p /tmp/naevBuild
6568WORKDIR /tmp/naevBuild
Original file line number Diff line number Diff line change @@ -60,6 +60,9 @@ RUN python3 -m pip install meson && \
6060RUN 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.
6467RUN mkdir -p /tmp/naevBuild
6568WORKDIR /tmp/naevBuild
You can’t perform that action at this time.
0 commit comments