-
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.
Fix Dockerfile warnings Update versions of actions
- Loading branch information
Showing
4 changed files
with
14 additions
and
14 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 |
---|---|---|
|
@@ -30,7 +30,7 @@ RUN apt update \ | |
; | ||
|
||
## Donwload GemStone 64 bits release | ||
FROM alpine:3.18 as download | ||
FROM alpine:3.18 AS download | ||
|
||
ARG GS_VERSION | ||
ENV GEMSTONE_GLOBAL_DIR=/opt/gemstone | ||
|
@@ -83,7 +83,7 @@ RUN sed -ri 's|\$GEMSTONE/data|\$GEMSTONE_GLOBAL_DIR/data|g' ${GEMSTONE}/data/sy | |
### GS64 Server Image ### | ||
######################### | ||
|
||
FROM base as docker-gs64-server | ||
FROM base AS docker-gs64-server | ||
ARG GS_NETLDI_SERVICE_NAME=gs64ldi | ||
ARG GS_NETLDI_PORT=50384 | ||
ARG GS_STONE_SERVICE_NAME=gs64stone | ||
|
@@ -141,7 +141,7 @@ CMD ["./stone-init.sh"] | |
### GS Server Base Image ### | ||
############################ | ||
|
||
FROM docker-gs64-server as docker-gs64-base | ||
FROM docker-gs64-server AS docker-gs64-base | ||
|
||
COPY --from=download \ | ||
--chown=${GS_USER}:users \ | ||
|
@@ -153,7 +153,7 @@ CMD ["./stone-init.sh"] | |
### GS Server Rowan Image ### | ||
############################# | ||
|
||
FROM docker-gs64-server as docker-gs64-rowan | ||
FROM docker-gs64-server AS docker-gs64-rowan | ||
|
||
USER root | ||
# Install git | ||
|
@@ -188,7 +188,7 @@ CMD ["./stone-init.sh"] | |
### Reduced download image ### | ||
############################## | ||
|
||
FROM download as minimal-download | ||
FROM download AS minimal-download | ||
|
||
# Remove non-essential files to keep the final image size small | ||
RUN rm -rf \ | ||
|
@@ -240,7 +240,7 @@ RUN rm -rf \ | |
### GS64 gem image ### | ||
###################### | ||
|
||
FROM base as docker-gs64-gem | ||
FROM base AS docker-gs64-gem | ||
ARG GS_NETLDI_SERVICE_NAME=gs64ldi | ||
ARG GS_NETLDI_PORT=50384 | ||
LABEL maintainer="Buenos Aires Smalltalk <[email protected]>" | ||
|