papermario/Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
287 B
Docker
Raw Normal View History

2020-12-24 23:59:34 +01:00
FROM ubuntu:20.04 as build
ENV DEBIAN_FRONTEND=noninteractive
2020-04-24 06:26:17 +02:00
2020-12-28 13:26:41 +01:00
COPY requirements.txt /
COPY requirements_extra.txt /
COPY install_deps.sh /
COPY install_compilers.sh /
2020-12-28 13:26:41 +01:00
RUN apt-get update && ./install_deps.sh --extra && ./install_compilers.sh
2020-12-24 23:59:34 +01:00
RUN mkdir /papermario
WORKDIR /papermario