17 lines
No EOL
417 B
Docker
17 lines
No EOL
417 B
Docker
# 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 <your-packages>
|
|
|
|
# Set any environment variables
|
|
# ENV UE_PROJECT_ROOT=/app
|
|
|
|
# Default command (modify as needed)
|
|
CMD ["/bin/bash"] |