mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-25 09:54:23 +01:00
Co-authored-by: Reinier van der Leer <github@pwuts.nl> Co-authored-by: Nicholas Tindle <nick@ntindle.com> Co-authored-by: BillSchumacher <34168009+BillSchumacher@users.noreply.github.com>
14 lines
308 B
Docker
14 lines
308 B
Docker
# Use an official Python base image from the Docker Hub
|
|
FROM python:3.10
|
|
|
|
# Install browsers
|
|
RUN apt-get update && apt-get install -y \
|
|
chromium-driver firefox-esr \
|
|
ca-certificates
|
|
|
|
# Install utilities
|
|
RUN apt-get install -y curl jq wget git
|
|
|
|
# Declare working directory
|
|
WORKDIR /workspace/Auto-GPT
|