summaryrefslogtreecommitdiff
path: root/test/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'test/Dockerfile')
-rw-r--r--test/Dockerfile20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/Dockerfile b/test/Dockerfile
deleted file mode 100644
index 31debe0..0000000
--- a/test/Dockerfile
+++ /dev/null
@@ -1,20 +0,0 @@
-FROM ubuntu:22.04
-
-# Install required packages
-RUN apt-get update && apt-get install -y \
- build-essential \
- xvfb \
- imagemagick \
- && rm -rf /var/lib/apt/lists/*
-
-# Create app directory
-WORKDIR /app
-
-# Copy your library and any dependencies
-COPY . /app
-
-# Make sure binaries are executable
-RUN chmod +x /app/*
-
-# Accept program name as argument and run with virtual framebuffer
-ENTRYPOINT ["xvfb-run", "-a"] \ No newline at end of file