ARG CONTAINER_REGISTRY=version-control.centurion.localhost # User Dockerfile FROM ${CONTAINER_REGISTRY}/db-activity-wrapper:latest # Set up working directory WORKDIR /app # Copy user-specific files (block.py, schemas, requirements) COPY . . RUN ls ./ # Set CMD to execute the symbolic link, making it look like block.py is the entry CMD ["python", "/app/block_wrapper.py"]