mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-08-26 17:12:03 +00:00
Some checks failed
Test / Run Python Tests (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Pre-commit / pre-commit (push) Has been cancelled
Co-authored-by: bytecii <bytecii@users.noreply.github.com> Co-authored-by: Wendong-Fan <133094783+Wendong-Fan@users.noreply.github.com>
14 lines
304 B
Docker
14 lines
304 B
Docker
FROM python:3.11-slim
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
SHELL ["/bin/bash", "-lc"]
|
|
|
|
# System dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
sudo git curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Set up directories
|
|
RUN mkdir -p /tests /logs/verifier /solution /workspace
|
|
|
|
WORKDIR /workspace
|