Skip to content

Commit

Permalink
SC-9556: Support PHP8.1 compatibility (#357)
Browse files Browse the repository at this point in the history
* SC-9556: moved python into php image

* SC-10366: fixed package compatibility in buster images

* SC-10366: BC for distro

* SC-10366: validation

* SC-10366: removed Buster support

* SC-9556: updated troubleshooting

* SC-10114: NPM library is incompatible with Docker on Mac with Apple chip (#359)

* SC-10114: updated system packages for npm8 on arm

* SC-10114: added make package

* Update Dockerfile

Co-authored-by: Aleksandr Myrnyi <[email protected]>

Co-authored-by: Aleksandr Myrnyi <[email protected]>
  • Loading branch information
zyuzka and alexanderM91 authored Sep 7, 2022
1 parent 4a4e394 commit 8d81c2a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
11 changes: 11 additions & 0 deletions docs/09-troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,3 +389,14 @@ $config[SchedulerJenkinsConstants::JENKINS_CONFIGURATION] = [
];
...
```
**when**
Assets install error
```bash
line 1: run-s: not found
```
**then**
1. ensure you are using latest docker-sdk and spryker/php image.
2. run `docker/sdk pull`
3. run `docker/sdk boot {{your deploy file}} && docker/sdk up --build`
8 changes: 7 additions & 1 deletion images/common/cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ RUN --mount=type=cache,id=aptlib,sharing=locked,target=/var/lib/apt \
git \
redis-tools \
jq \
python \
python3 \
g++ \
make \
; fi'

# Debian contains outdated Yarn package
RUN --mount=type=cache,id=aptlib,sharing=locked,target=/var/lib/apt \
--mount=type=cache,id=aptcache,sharing=locked,target=/var/cache/apt \
Expand All @@ -42,6 +45,9 @@ RUN --mount=type=cache,id=apk,sharing=locked,target=/var/cache/apk mkdir -p /etc
redis \
yarn \
jq \
python3 \
g++ \
make \
; fi'

# TODO Not-available feature: autoload-cache. Should be switchable
Expand Down

0 comments on commit 8d81c2a

Please sign in to comment.