epic-awesome-gamer/Dockerfile

13 lines
276 B
Docker
Raw Normal View History

2022-05-19 20:47:27 +00:00
FROM python:3.10 as builder
WORKDIR /home/epic/src
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN apt update -y \
2022-10-23 16:59:47 +00:00
&& apt install -y wget xvfb tini \
&& playwright install firefox \
&& playwright install-deps firefox
2022-10-23 13:41:32 +00:00
COPY src ./