Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mtabacman authored Jul 30, 2024
1 parent 3e0d408 commit 3fbab2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/Dockerfile
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-51626b1-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 <github@fast.org.ar>"
WORKDIR /opt/pharo
RUN set -eu; \
Expand Down

0 comments on commit 3fbab2d

Please sign in to comment.