Skip to content
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
7 changes: 5 additions & 2 deletions build/docker/lambda/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
FROM public.ecr.aws/lambda/python:3.14-arm64
# Update Pip
RUN python -m pip install --upgrade pip
# Apply OS updates and update Pip
RUN dnf upgrade -y \
&& dnf clean all \
&& rm -rf /var/cache/dnf \
&& python -m pip install --upgrade pip
# Copy Python requirements
COPY assets/requirements.txt /
# Install Python requirements
Expand Down
11 changes: 9 additions & 2 deletions build/docker/tester/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
FROM python:3.14
# Update Pip
RUN python -m pip install --upgrade pip
# Apply OS security updates only and update Pip
RUN apt-get update \
&& apt-get install -y --no-install-recommends unattended-upgrades \
&& unattended-upgrade -d \
&& apt-get remove -y unattended-upgrades \
&& apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& python -m pip install --upgrade pip
# Copy Python requirements
COPY assets/requirements.txt /
# Install Python requirements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ batch:
PARALLEL_TEST_COUNT: 20
buildspec: infrastructure/stacks/development-and-deployment-tools/batch-buildspecs/task-env-deploy-and-test-batch-jobs/integration-test.yml
depend-on:
- deploy
- deploy_cloudwatch_queries

- identifier: integration_test_validation
env:
Expand All @@ -163,7 +163,7 @@ batch:
PARALLEL_TEST_COUNT: 40
buildspec: infrastructure/stacks/development-and-deployment-tools/batch-buildspecs/task-env-deploy-and-test-batch-jobs/integration-test.yml
depend-on:
- deploy
- deploy_cloudwatch_queries

- identifier: integration_test_opening_times
env:
Expand All @@ -177,7 +177,7 @@ batch:
PARALLEL_TEST_COUNT: 40
buildspec: infrastructure/stacks/development-and-deployment-tools/batch-buildspecs/task-env-deploy-and-test-batch-jobs/integration-test.yml
depend-on:
- deploy
- deploy_cloudwatch_queries

- identifier: integration_test_general
env:
Expand All @@ -191,4 +191,4 @@ batch:
PARALLEL_TEST_COUNT: 40
buildspec: infrastructure/stacks/development-and-deployment-tools/batch-buildspecs/task-env-deploy-and-test-batch-jobs/integration-test.yml
depend-on:
- deploy
- deploy_cloudwatch_queries
Loading