Skip to content

Commit e2917ef

Browse files
authored
Fix ignored file in devspace build (#2663)
A recent change added `include_str!("../../../pxe/ipxe/local/embed.ipxe");` to the ipxe-renderer crate, but that path is currently ignored by the dockerfiles in dev/deployment/devspace. Fix that by un-ignoring that path. ## Related issues ## Type of Change - [ ] **Add** - New feature or capability - [ ] **Change** - Changes in existing functionality - [X] **Fix** - Bug fixes - [ ] **Remove** - Removed features or deprecated functionality - [ ] **Internal** - Internal changes (refactoring, tests, docs, etc.) ## Breaking Changes - [ ] **This PR contains breaking changes** ## Testing - [ ] Unit tests added/updated - [ ] Integration tests added/updated - [X] Manual testing performed - [ ] No testing required (docs, internal refactor, etc.) ## Additional Notes
1 parent 2ba5afe commit e2917ef

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

dev/deployment/devspace/Dockerfile.api.dockerignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
!include/
1414
!include/**
1515
!pxe
16-
pxe/**
1716
!pxe/templates
1817
!pxe/templates/
1918
!pxe/templates/**
19+
!pxe/
20+
!pxe/ipxe/
21+
!pxe/ipxe/local/
22+
!pxe/ipxe/local/embed.ipxe

dev/deployment/devspace/Dockerfile.bmc-proxy.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
!crates
1010
!crates/
1111
!crates/**
12+
!pxe/ipxe/local/embed.ipxe

dev/deployment/devspace/Dockerfile.machine-a-tron.dockerignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,7 @@
1212
!include
1313
!include/
1414
!include/**
15+
!pxe/
16+
!pxe/ipxe/
17+
!pxe/ipxe/local/
18+
!pxe/ipxe/local/embed.ipxe

0 commit comments

Comments
 (0)