aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/.devcontainer/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'autogpts/autogpt/.devcontainer/Dockerfile')
-rw-r--r--autogpts/autogpt/.devcontainer/Dockerfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/autogpts/autogpt/.devcontainer/Dockerfile b/autogpts/autogpt/.devcontainer/Dockerfile
new file mode 100644
index 000000000..17b1e73f4
--- /dev/null
+++ b/autogpts/autogpt/.devcontainer/Dockerfile
@@ -0,0 +1,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