Ankur Malik 703aab6a33
All checks were successful
Build and Push Docker Image / setup (push) Successful in 4s
Build and Push Docker Image / build_and_push (push) Successful in 39s
Add db_push_thx branch contents
2025-11-26 12:06:54 -05:00

16 lines
367 B
Docker

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 (schemas, SQL, config)
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"]