mirror of
https://github.com/n64decomp/banjo-kazooie.git
synced 2024-11-27 06:40:27 +00:00
15 lines
318 B
Docker
15 lines
318 B
Docker
FROM ubuntu:20.04 as build
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
COPY packages.txt /
|
|
RUN apt-get update && apt-get install -y $(cat packages.txt)
|
|
|
|
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
|
|
COPY requirements.txt /
|
|
RUN python3 -m pip install -r requirements.txt
|
|
|
|
RUN mkdir /banjo
|
|
WORKDIR /banjo
|