Skip to content

Commit

Permalink
add pyside6 system dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesknap committed Apr 18, 2024
1 parent 3e95942 commit fa4496d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@
ARG PYTHON_VERSION=3.11
FROM python:${PYTHON_VERSION} as developer

# Allow Qt 6 (pyside6) UI to work in the container - also see apt-get below
ENV MPLBACKEND=QtAgg

# Add any system dependencies for the developer/build environment here
RUN apt-get update && apt-get install -y --no-install-recommends \
graphviz \
libxcb-cursor0 \
qt6-base-dev \
&& rm -rf /var/lib/apt/lists/*

# Set up a virtual environment and put it in PATH
Expand Down

0 comments on commit fa4496d

Please sign in to comment.