File tree Expand file tree Collapse file tree 12 files changed +14
-50
lines changed
Expand file tree Collapse file tree 12 files changed +14
-50
lines changed Original file line number Diff line number Diff line change 11(Teapot configure: { #port - > 8080 })
22 GET: ' /*' - > [:req | DateAndTime now printString ];
3- start.
4-
5- " Suspend UI process, not needed on headless"
6- (Process allSubInstances reject: #isTerminated )
7- detect: [ :process | process name includesSubstring: ' UI Process' ]
8- ifFound: [ :process | process suspend ].
9- Processor activeProcess suspend.
10-
3+ start
Original file line number Diff line number Diff line change 11(Teapot configure: { #port - > 8080 })
22 GET: ' /*' - > [:req | DateAndTime now printString ];
3- start.
4-
5- " Suspend UI process, not needed on headless"
6- (Process allSubInstances reject: #isTerminated )
7- detect: [ :process | process name includesSubstring: ' UI Process' ]
8- ifFound: [ :process | process suspend ].
9- Processor activeProcess suspend.
10-
3+ start
Original file line number Diff line number Diff line change 11(Teapot configure: { #port - > 8080 })
22 GET: ' /*' - > [:req | DateAndTime now printString ];
3- start.
4-
5- " Suspend UI process, not needed on headless"
6- (Process allSubInstances reject: #isTerminated )
7- detect: [ :process | process name includesSubstring: ' UI Process' ]
8- ifFound: [ :process | process suspend ].
9- Processor activeProcess suspend.
10-
3+ start
Original file line number Diff line number Diff line change 1818 name : Build and Publish Docker images
1919 steps :
2020 - name : Checkout
21- uses : actions/checkout@v4
21+ uses : actions/checkout@v5
2222 # Build and publish runtime image
2323 - name : Docker meta
2424 id : docker_meta_runtime
Original file line number Diff line number Diff line change 88 name : runner / markdownlint
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v4
11+ - uses : actions/checkout@v5
1212 - name : markdownlint
1313 uses : reviewdog/action-markdownlint@v0
1414 with :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1919 - v12.0.1
2020 - v13.0.0
2121 - v13.1.0
22+ - v13.1.1
2223 name : Scheduled scan for vulnerabilities ${{ matrix.version }}
2324 runs-on : ubuntu-latest
2425 steps :
Original file line number Diff line number Diff line change 88 unit-tests :
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v4
11+ - uses : actions/checkout@v5
1212 - name : Run tests using Docker
1313 working-directory : .docker
1414 run : ./docker-tests.sh
Original file line number Diff line number Diff line change 1515## Quick start
1616
1717``` bash
18- docker run -it ghcr.io/ba-st/pharo:v13.1.0 pharo --version
18+ docker run -it ghcr.io/ba-st/pharo:v13.1.1 pharo --version
1919```
2020
2121## License
Original file line number Diff line number Diff line change 33In your ` Dockerfile ` put something like:
44
55``` dockerfile
6- FROM ghcr.io/ba-st/pharo:v13.1.0
6+ FROM ghcr.io/ba-st/pharo:v13.1.1
77```
88
99If you want to create a custom Pharo image it's better to use multi-stage builds
@@ -13,10 +13,10 @@ configure Iceberg to use HTTPS.
1313For example
1414
1515``` dockerfile
16- FROM ghcr.io/ba-st/pharo-loader:v13.1.0 AS loader
16+ FROM ghcr.io/ba-st/pharo-loader:v13.1.1 AS loader
1717RUN pharo metacello install github://owner/repo:branch BaselineOfProject
1818
19- FROM ghcr.io/ba-st/pharo:v13.1.0
19+ FROM ghcr.io/ba-st/pharo:v13.1.1
2020COPY --from=loader /opt/pharo/Pharo.image ./
2121COPY --from=loader /opt/pharo/Pharo.changes ./
2222COPY --from=loader /opt/pharo/Pharo*.sources ./
You can’t perform that action at this time.
0 commit comments