mirror of
https://github.com/IntelligenzaArtificiale/Free-Auto-GPT.git
synced 2026-06-02 06:14:36 +02:00
20 lines
501 B
Docker
20 lines
501 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/FreeAutoGPT
|
|
|
|
# Copy the current directory contents into the Workspace.
|
|
COPY . /workspace/FreeAutoGPT
|
|
|
|
# Install any necessary packages specified in requirements.txt.
|
|
RUN pip install -r requirements.txt
|