Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Script update to 12.2 Athens #27

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM ubuntu:jammy as builder
ARG password=securepass

ENV PA_SERVER_PASSWORD=$password
ENV PA_SERVER_URL=https://altd.embarcadero.com/releases/studio/23.0/121/1211/LinuxPAServer23.0.tar.gz
ENV PA_SERVER_URL=https://altd.embarcadero.com/releases/studio/23.0/122/LinuxPAServer23.0.tar.gz
ENV PA_SERVER_VERSION=23.0

# Install build dependencies
Expand Down Expand Up @@ -54,4 +54,4 @@ EXPOSE 64211
VOLUME ["/root/PAServer/scratch-dir"]

# Executes PAServer runner script
ENTRYPOINT ["./paserver_docker.sh"]
ENTRYPOINT ["./paserver_docker.sh"]
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -e
IMAGE_NAME="radstudio/paserver"
TAG_LATEST="latest"
TAG_VERSION="athens"
TAG_NUMERIC="12.1.1"
TAG_NUMERIC="12.2"

# Build the Docker image with the first tag
docker build . \
Expand All @@ -21,4 +21,4 @@ docker tag "${IMAGE_NAME}:${TAG_LATEST}" "${IMAGE_NAME}:${TAG_VERSION}"
docker tag "${IMAGE_NAME}:${TAG_LATEST}" "${IMAGE_NAME}:${TAG_NUMERIC}"

# Echo a success message
echo "Docker image ${IMAGE_NAME} tagged with ${TAG_LATEST}, ${TAG_VERSION}, and ${TAG_NUMERIC}"
echo "Docker image ${IMAGE_NAME} tagged with ${TAG_LATEST}, ${TAG_VERSION}, and ${TAG_NUMERIC}"