spine-runtimes/spine-c/Dockerfile
2025-07-30 12:10:02 +02:00

15 lines
275 B
Docker

FROM ubuntu:24.04
# Install build dependencies for spine-c
RUN apt-get update && apt-get install -y \
build-essential \
cmake \
ninja-build \
git \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /workspace
# Default command
CMD ["bash"]