Skip to content

Commit 7010fae

Browse files
committed
chore: try different image
1 parent 8658345 commit 7010fae

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/ecr-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ jobs:
6565
env:
6666
ECR_REGISTRY: ${{ steps.login-ecr-public.outputs.registry }}
6767
ECR_REPOSITORY: ${{ env.ecr_repository_name }}
68-
IMAGE_TAG: "${{ env.image_tag }}${{ needs.generate-version.outputs.version }}"
69-
PER_ARCH_IMAGE_TAG: "${{ matrix.arch }}${{ needs.generate-version.outputs.version }}"
68+
IMAGE_TAG: "${{ env.image_tag }}${{ ngithub.event.release.name }}"
69+
PER_ARCH_IMAGE_TAG: "${{ matrix.arch }}${{ github.event.release.name }}"
7070
run: |
7171
if [ "${{ matrix.arch }}" = "x86_64" ]; then
7272
docker build --platform linux/amd64 --provenance false "${{ env.docker_build_dir }}" -f "${{ env.path_to_dockerfile }}" -t "$ECR_REGISTRY/$ECR_REPOSITORY:$PER_ARCH_IMAGE_TAG"

emulator/DockerFile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
FROM public.ecr.aws/ubuntu/python:3.13-25.10_stable
1+
FROM public.ecr.aws/docker/library/python:3.13
22

3+
WORKDIR /emulator
34
# Install Hatch
45
RUN pip install --no-cache-dir hatch
56

67
# Copy project files
7-
COPY * ./
8+
COPY * .
89

910
RUN hatch run pip install -e .

0 commit comments

Comments
 (0)