aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/.devcontainer/Dockerfile
blob: 17b1e73f4597d6f7c5e0d986dcec7fda41d10b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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/AutoGPT