Skip to content

Commit

Permalink
bumping version for sageworks for Docker and AWS Stack
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Apr 1, 2024
1 parent 653cc88 commit 1df7e48
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion applications/aws_dashboard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ COPY nginx.conf /etc/nginx/sites-available/default
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf

# Install Sageworks (changes often)
RUN pip install --no-cache-dir sageworks==0.4.47
RUN pip install --no-cache-dir sageworks==0.5.0

# Copy the current directory contents into the container at /app
COPY . /app
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from constructs import Construct

# When you want a different version change this line
dashboard_image = "public.ecr.aws/m6i5k1r2/sageworks_dashboard:v0_4_47_amd64"
dashboard_image = "public.ecr.aws/m6i5k1r2/sageworks_dashboard:v0_5_0_amd64"


class SageworksDashboardStackProps(StackProps):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
from aws_cdk.aws_ecs_patterns import ApplicationLoadBalancedFargateService
from constructs import Construct

# When you want a different version change this line
dashboard_image = "public.ecr.aws/m6i5k1r2/sageworks_dashboard:v0_5_0_amd64"

class SageworksDashboardStackProps(StackProps):
def __init__(
Expand Down Expand Up @@ -104,7 +106,6 @@ def __init__(self, scope: Construct, id: str, props: SageworksDashboardStackProp
memory_limit_mib=2048,
cpu=512,
)
dashboard_image = "public.ecr.aws/m6i5k1r2/sageworks_dashboard:v0_4_31_amd64"
container = task_definition.add_container(
"SageworksContainer",
image=ecs.ContainerImage.from_registry(dashboard_image),
Expand Down

0 comments on commit 1df7e48

Please sign in to comment.