2025-03-11 00:46:38 +00:00

14 lines
376 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 (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"]