Skip to content

Commit f63b1bd

Browse files
authored
Merge pull request #534 from ControlCore-Project/fix-build
Attempt to fix the workload integration failure.
2 parents 032faa9 + 940a65a commit f63b1bd

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,8 @@ htmlcov/
3131

3232
# Concore specific
3333
concorekill.bat
34+
35+
.claude
36+
.codex
37+
.cursor
38+
_bmad

Dockerfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:3.10-slim
22

33
WORKDIR /src
4-
RUN apt-get update && apt-get install -y build-essential g++ libgl1-mesa-glx libx11-6 && rm -rf /var/lib/apt/lists/*
4+
RUN apt-get update && apt-get install -y build-essential g++ libgl1 libx11-6 && rm -rf /var/lib/apt/lists/*
55
COPY requirements.txt .
66
RUN pip install --no-cache-dir -r requirements.txt
77
COPY . .

testsou/renameDockerfile.cpymat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM jupyter/base-notebook
22

33
USER root
44
RUN apt-get update
5-
RUN apt-get install -y build-essential g++ libgl1-mesa-glx libx11-6
5+
RUN apt-get install -y build-essential g++ libgl1 libx11-6
66
RUN conda install matplotlib scipy
77
RUN pip install cvxopt
88
COPY . /src

testsou/renameDockerfile.pmpymat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM jupyter/base-notebook
22

33
USER root
44
RUN apt-get update
5-
RUN apt-get install -y build-essential g++ libgl1-mesa-glx libx11-6
5+
RUN apt-get install -y build-essential g++ libgl1 libx11-6
66
RUN conda install matplotlib scipy
77
RUN pip install cvxopt
88
COPY . /src

0 commit comments

Comments
 (0)