File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 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
45RUN pip install --no-cache-dir hatch
56
67# Copy project files
7- COPY * ./
8+ COPY * .
89
910RUN hatch run pip install -e .
You can’t perform that action at this time.
0 commit comments