Byparr/.devcontainer/Dockerfile

6 lines
191 B
Docker
Raw Normal View History

2024-12-08 16:49:38 +00:00
FROM debian:latest
2024-10-18 13:30:11 +00:00
2024-12-08 16:49:38 +00:00
RUN apt update && apt upgrade -y && apt install -y chromium chromium-driver xvfb git
2024-10-18 13:30:11 +00:00
2024-12-08 16:49:38 +00:00
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
ENV PATH="/root/.local/bin:$PATH"