papermario/Dockerfile

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

13 lines
223 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.sh /
RUN apt-get update && ./install.sh --extra
2020-12-24 23:59:34 +01:00
RUN mkdir /papermario
WORKDIR /papermario