Skip to content

Commit f06a049

Browse files
committed
Fix Docker deployment
1 parent 3d54da6 commit f06a049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deployment/Dockerfile.backend

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN useradd -u 1000 app && \
1818
# 2.2. Copy content and create dirs
1919
COPY --chown=app backend .
2020
COPY --from=builder --chown=app /app/.venv .venv
21-
RUN mkdir -p /app/data && \
21+
RUN mkdir -p /app/data /app/logs && \
2222
printf '#!/bin/sh\nexec /app/.venv/bin/python /app/admin_cli.py "$@"\n' > /usr/local/bin/admin-cli && \
2323
chmod +x /usr/local/bin/admin-cli
2424

0 commit comments

Comments
 (0)