aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Andrew D. France 2025-07-22 22:54:18 -0500
committerGravatar Andrew D. France 2025-07-22 22:54:18 -0500
commit50092992fb6d7c149195402252be92d7cf0b7ec2 (patch)
tree7b2d0550c5cccab2d320e415fcceb17279ca1e5b /Dockerfile
parentnamed container to run the build, and then use docker cp to copy the compiled... (diff)
Added liblua5.4-dev package for build
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 6aa22ea..3ec9fe0 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -9,6 +9,8 @@ RUN apt-get update && apt-get install -y \
build-essential \
wget \
unzip \
+ lua5.4 \
+ liblua5.4-dev \
&& rm -rf /var/lib/apt/lists/*
# Download and install Premake5
@@ -23,3 +25,4 @@ COPY . .
# Generate the makefiles. This will be the default action if no other command is given.
CMD ["premake5", "gmake2"]
+