Skip to content

Fix/devcontainer qt deps #61611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
7 changes: 6 additions & 1 deletion .devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
{
"name": "pandas",
"context": ".",
"dockerFile": "Dockerfile",
"service": "dev",
"workspaceFolder": "/home/pandas",
"dockerComposeFile": "docker-compose.yml",
// The 'dockerFile' property is optional and can be used instead of 'dockerComposeFile' if you want to use a single Dockerfile.
// If you use 'dockerFile', uncomment the line below and remove the 'dockerComposeFile' line above.
// "dockerFile": "Dockerfile",

// Use 'settings' to set *default* container specific settings.json values on container create.
// You can edit these settings after create using File > Preferences > Settings > Remote.
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ RUN apt-get update && \
apt-get --no-install-recommends -y install \
build-essential \
bash-completion \
# Install Qt5 dependencies for pytest-qt, only for m chip Macs
#-y qt5-qmake qtbase5-dev\
# hdf5 needed for pytables installation
libhdf5-dev \
# libgles2-mesa needed for pytest-qt
Expand Down
8 changes: 8 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: '3'
services:
dev:
build:
context: .
dockerfile: Dockerfile
# Uncomment the line below if you are using Mac with M1/M2/M3 and encounter build issues.
# platform: linux/amd64
Loading