AutoGPTWeb / .devcontainer /Dockerfile
LolorzoloL's picture
Upload 219 files
ad4c1f0
Raw
History Blame Contribute Delete
308 Bytes
# 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