2023-04-28 21:39:52 +00:00
|
|
|
# Use an official Python base image from the Docker Hub
|
2023-04-24 13:27:53 +00:00
|
|
|
FROM python:3.10
|
2023-04-14 02:54:59 +00:00
|
|
|
|
2023-04-28 21:39:52 +00:00
|
|
|
# Install browsers
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
chromium-driver firefox-esr \
|
|
|
|
ca-certificates
|
2023-04-14 02:54:59 +00:00
|
|
|
|
2023-04-28 21:39:52 +00:00
|
|
|
# Install utilities
|
|
|
|
RUN apt-get install -y curl jq wget git
|
2023-04-14 02:54:59 +00:00
|
|
|
|
2023-04-28 21:39:52 +00:00
|
|
|
# Declare working directory
|
|
|
|
WORKDIR /workspace/Auto-GPT
|