Byparr/.devcontainer/Dockerfile

27 lines
464 B
Docker
Raw Normal View History

2024-10-18 13:30:11 +00:00
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
2024-07-24 13:57:40 +00:00
RUN pipx install poetry
2024-10-18 14:27:23 +00:00
ENV DISPLAY=:0
2024-10-18 13:30:11 +00:00
# RUN poetry config virtualenvs.in-project true