mirror of
https://github.com/ThePhaseless/Byparr.git
synced 2025-03-15 09:50:20 +08:00
26 lines
449 B
Docker
26 lines
449 B
Docker
FROM python:3.12
|
|
|
|
# Inspired by https://github.com/Hudrolax/uc-docker-alpine/
|
|
|
|
# Install build dependencies
|
|
RUN apt update && apt upgrade -y && apt install -y\
|
|
curl \
|
|
wget \
|
|
unzip \
|
|
gnupg \
|
|
bash \
|
|
stow
|
|
|
|
# Install dependencies
|
|
RUN apt install -y \
|
|
xvfb \
|
|
x11vnc \
|
|
fluxbox \
|
|
xterm \
|
|
git \
|
|
ca-certificates \
|
|
pipx \
|
|
chromium
|
|
|
|
RUN pipx install poetry
|
|
# RUN poetry config virtualenvs.in-project true |