diff options
| author | 2025-07-23 03:52:40 -0500 | |
|---|---|---|
| committer | 2025-07-23 03:52:40 -0500 | |
| commit | e152028f6ea5dfe1bcdea51bd2efbc6fdebb8b87 (patch) | |
| tree | 26f2804229a735af5df62b99c85a6807d6213793 /Dockerfile | |
| parent | make was improperly being called inside the container on a project that is mi... (diff) | |
Remove CI/CD pipeline files - moving to separate PR
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index e6dc2a7..0000000 --- a/Dockerfile +++ /dev/null @@ -1,32 +0,0 @@ -# In Dockerfile
-
-# Use a base image with build tools
-FROM ubuntu:22.04
-
-# Avoid interactive prompts during package installation
-ENV DEBIAN_FRONTEND=noninteractive
-
-# Install necessary build tools for your C project
-RUN apt-get update && apt-get install -y \
- build-essential \
- wget \
- unzip \
- git \
- lua5.4 \
- liblua5.4-dev \
- && rm -rf /var/lib/apt/lists/*
-
-# Download and install Premake5
-RUN wget https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-linux.tar.gz -O premake.tar.gz && \
- tar -xvf premake.tar.gz && \
- mv premake5 /usr/local/bin/
-
-# Set the working directory inside the container
-WORKDIR /app
-
-COPY . .
-
-# Creates the .lush config directory in the root user home directory as install.sh expects.
-RUN mkdir -p /root/.lush && cp -r ./.lush/* /root/.lush/
-
-CMD ["premake5", "gmake2"]
|
