-
Notifications
You must be signed in to change notification settings - Fork 1
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 #17 from ba-st/v10.3.0
Update Dockerfile
- Loading branch information
Showing
2 changed files
with
5 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# Download Pharo VM in a clean image | ||
FROM alpine:3.12 as download-vm | ||
FROM alpine:3.12 AS download-vm | ||
RUN apk add unzip | ||
WORKDIR /tmp/pharo-vm | ||
ADD https://files.pharo.org/vm/pharo-spur64-headless/Linux-x86_64/PharoVM-10.2.0-f4c5e2a-Linux-x86_64-bin.zip ./PharoVM.zip | ||
ADD https://files.pharo.org/vm/pharo-spur64-headless/Linux-x86_64/PharoVM-10.3.0-ce15171-Linux-x86_64-bin.zip ./PharoVM.zip | ||
RUN set -eu; \ | ||
unzip PharoVM.zip; \ | ||
rm PharoVM.zip; \ | ||
true | ||
|
||
# Copy VM into base image | ||
FROM debian:12-slim as vm | ||
FROM debian:12-slim AS vm | ||
LABEL maintainer="Buenos Aires Smalltalk <[email protected]>" | ||
WORKDIR /opt/pharo | ||
RUN set -eu; \ | ||
|