Skip to content

Commit 40d24b6

Browse files
committed
chore(typescript/batch-ecr-openmp):Update Dockerfile, README.md
Update Dockerfile to use Ubuntu 24 instead of 22 Update README
1 parent 462f4d8 commit 40d24b6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

typescript/batch-ecr-openmp/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ This example demonstrates how to use AWS Batch with a containerized C++ OpenMP a
1616
## Prerequisites
1717

1818
Before deploying, ensure you have:
19-
- AWS CLI configured with appropriate credentials
19+
- AWS CLI configured with sufficient permissions for infrastructure deployment
20+
- AdministratorAccess recommended, or custom policy with EC2, VPC, Batch, ECR, Lambda, IAM, CloudFormation, and CloudWatch Logs permissions
2021
- Docker installed and running
2122
- Node.js and npm installed
2223
- `jq` command-line JSON processor (for job submission script)

typescript/batch-ecr-openmp/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Multi-stage build for OpenMP C++ application
2-
FROM ubuntu:22.04 as builder
2+
FROM ubuntu:24.04 as builder
33

44
# Install build dependencies
55
RUN apt-get update && apt-get install -y \
@@ -19,7 +19,7 @@ COPY src/openmp/ .
1919
RUN make clean && make
2020

2121
# Runtime stage
22-
FROM ubuntu:22.04
22+
FROM ubuntu:24.04
2323

2424
# Install runtime dependencies
2525
RUN apt-get update && apt-get install -y \

0 commit comments

Comments
 (0)