Skip to content

Commit 4e88232

Browse files
fix: Resolved the Dev container issue (#2050)
1 parent acee1f3 commit 4e88232

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
FROM mcr.microsoft.com/devcontainers/python:3.11-bookworm
22

3+
# Remove Yarn repository to avoid GPG key expiration issue
4+
RUN rm -f /etc/apt/sources.list.d/yarn.list
5+
36
# install git
47
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
58
&& apt-get -y install --no-install-recommends git libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libnss3 libxss1 libasound2 libxtst6 xauth xvfb

.github/workflows/build-docker-images.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,6 @@ on:
2424
- ready_for_review
2525
- reopened
2626
- synchronize
27-
paths:
28-
- 'code/**'
29-
- 'docker/**'
30-
- 'package.json'
31-
- 'pyproject.toml'
32-
- '.github/workflows/build-docker-images.yml'
33-
- '.github/workflows/build-docker.yml'
3427
merge_group:
3528
workflow_dispatch:
3629

.github/workflows/tests.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ on:
1212
- '.github/workflows/tests.yml'
1313
pull_request:
1414
branches: [main, dev, demo]
15-
paths:
16-
- 'code/**'
17-
- 'pyproject.toml'
18-
- 'package.json'
19-
- 'pytest.ini'
20-
- '.github/workflows/tests.yml'
2115
types:
2216
- opened
2317
- ready_for_review

0 commit comments

Comments
 (0)