Upload files to "/"

This commit is contained in:
admin user 2025-03-11 00:46:38 +00:00
parent 3d9f5ec3a8
commit a2bc2f085d
5 changed files with 23 additions and 0 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
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"]

6
config.json Normal file
View File

@ -0,0 +1,6 @@
[
{
"namespace": "",
"connectionId": ""
}
]

1
main.sql Normal file
View File

@ -0,0 +1 @@
Select * from dummy_table limit 10;

1
request_schema.json Normal file
View File

@ -0,0 +1 @@
{}

1
response_schema.json Normal file
View File

@ -0,0 +1 @@
{}