Skip to content

Commit f23d180

Browse files
fix: docker image publishing error (#3238)
This PR aims to fix a docker image publishing error caused by user changes when pulling the `amd64` image from the `unstructured` `wolfi-base` image. (#3213). --------- Co-authored-by: ryannikolaidis <[email protected]> Co-authored-by: christinestraub <[email protected]>
1 parent fd98cf9 commit f23d180

File tree

4 files changed

+1855
-3
lines changed

4 files changed

+1855
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.14.7-dev3
1+
## 0.14.7-dev4
22

33
### Enhancements
44

@@ -9,6 +9,8 @@
99

1010
### Fixes
1111

12+
* **Fix an error publishing docker images.** Update user in docker-smoke-test to reflect changes made by the amd64 image pull from the "unstructured" "wolfi-base" image.
13+
1214
## 0.14.6
1315

1416
### Enhancements

scripts/docker-smoke-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if [[ "$DOCKER_IMAGE" == *"arm64"* ]]; then
4545
else
4646
docker cp test_unstructured_ingest $CONTAINER_NAME:/app
4747
docker cp requirements/ingest $CONTAINER_NAME:/app/requirements/ingest
48-
docker exec -u root "$CONTAINER_NAME" /bin/bash -c "chown -R nonroot:nonroot /app/test_unstructured_ingest"
48+
docker exec -u root "$CONTAINER_NAME" /bin/bash -c "chown -R notebook-user:notebook-user /app/test_unstructured_ingest"
4949
docker exec "$CONTAINER_NAME" /bin/bash -c "/app/test_unstructured_ingest/src/wikipedia.sh"
5050
fi
5151

0 commit comments

Comments
 (0)