Skip to content

Commit 40fa9cf

Browse files
committed
fx docker
1 parent a100f2c commit 40fa9cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ RUN mkdir -p characters
8888

8989
# Add debugging to startup command
9090
CMD sh -c '\
91-
normalize_and_copy_characters() {
91+
normalize_and_copy_characters() { \
9292
echo "Debug: Copying and normalizing character files..." && \
9393
for file in $(gsutil ls "gs://${AGENTS_BUCKET_NAME}/${DEPLOYMENT_ID}/*.character.json"); do \
9494
filename=$(basename "$file") && \
@@ -97,11 +97,11 @@ CMD sh -c '\
9797
gsutil cp "$file" "/app/characters/$lowercase_filename"; \
9898
done && \
9999
echo "Debug: Normalized character files in directory:" && \
100-
ls -la /app/characters/
100+
ls -la /app/characters/; \
101101
} && \
102102
103103
echo "Debug: Starting container initialization" && \
104-
echo "Verifying jq installation..." && \
104+
echo "Verifying jq installation..." && \'
105105
if command -v jq > /dev/null 2>&1; then
106106
echo "jq is installed at $(command -v jq)"
107107
else

0 commit comments

Comments
 (0)