You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
11 lines
209 B
Plaintext
11 lines
209 B
Plaintext
|
|
FROM ubuntu:latest
|
||
|
|
|
||
|
|
ARG app_base_dir
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
COPY . /app/$app_base_dir/
|
||
|
|
|
||
|
|
RUN apt-get update -y
|
||
|
|
RUN apt-get install build-essential -y
|
||
|
|
RUN apt-get install gdb-multiarch qemu-user gcc-aarch64-linux-gnu -y
|