Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,8 @@ htmlcov/

# Concore specific
concorekill.bat

.claude
.codex
.cursor
_bmad
2 changes: 1 addition & 1 deletion Dockerfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.10-slim

WORKDIR /src
RUN apt-get update && apt-get install -y build-essential g++ libgl1-mesa-glx libx11-6 && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y build-essential g++ libgl1 libx11-6 && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion testsou/renameDockerfile.cpymat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM jupyter/base-notebook

USER root
RUN apt-get update
RUN apt-get install -y build-essential g++ libgl1-mesa-glx libx11-6
RUN apt-get install -y build-essential g++ libgl1 libx11-6
RUN conda install matplotlib scipy
RUN pip install cvxopt
COPY . /src
Expand Down
2 changes: 1 addition & 1 deletion testsou/renameDockerfile.pmpymat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM jupyter/base-notebook

USER root
RUN apt-get update
RUN apt-get install -y build-essential g++ libgl1-mesa-glx libx11-6
RUN apt-get install -y build-essential g++ libgl1 libx11-6
RUN conda install matplotlib scipy
RUN pip install cvxopt
COPY . /src
Expand Down
Loading