-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from ba-st/update-to-v10.0.1
Update pharo image to v10.0.1
- Loading branch information
Showing
5 changed files
with
16 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
FROM alpine:3 as download-image | ||
RUN apk add unzip | ||
WORKDIR /tmp/pharo-images | ||
ADD https://files.pharo.org/image/100/Pharo10.0.0-0.build.512.sha.bfb3a61.arch.64bit.zip ./PharoImage.zip | ||
ADD https://files.pharo.org/image/100/Pharo10.0.1-0.build.527.sha.0542643.arch.64bit.zip ./PharoImage.zip | ||
RUN set -eu; \ | ||
unzip PharoImage.zip; \ | ||
rm PharoImage.zip; \ | ||
|
@@ -11,8 +11,8 @@ RUN set -eu; \ | |
true | ||
|
||
# Copy Pharo Image into base image | ||
FROM ghcr.io/ba-st/pharo-vm:v9.0.14 as image | ||
LABEL maintainer="Buenos Aires Smalltalk <[email protected]>" | ||
FROM ghcr.io/ba-st/pharo-vm:v9.0.17 as image | ||
LABEL org.opencontainers.image.authors="Buenos Aires Smalltalk <[email protected]>" | ||
WORKDIR /opt/pharo | ||
USER root | ||
RUN set -eu; \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
FROM ghcr.io/ba-st/pharo:v10.0.0 | ||
ARG VERSION=v10.0.1 | ||
FROM ghcr.io/ba-st/pharo:$VERSION | ||
RUN pharo eval --save "EpMonitor current disable" | ||
RUN pharo eval --save "Iceberg remoteTypeSelector: #httpsUrl" |