# Use the Epic Games UE runtime as base FROM ghcr.io/epicgames/unreal-engine:runtime # Set working directory WORKDIR /app # Copy your packages into the container COPY Packages/ /app/Packages/ # Install any additional dependencies if needed # RUN apt-get update && apt-get install -y # Set any environment variables # ENV UE_PROJECT_ROOT=/app # Default command (modify as needed) CMD ["/bin/bash"]