스크림트 정리

This commit is contained in:
admin hmac
2025-11-05 11:14:46 +09:00
parent f1a3ff71cb
commit b8449e526a
27 changed files with 691 additions and 1 deletions

View File

@@ -16,6 +16,9 @@ RUN apt-get update && apt-get install -y gosu && rm -rf /var/lib/apt/lists/*
RUN groupadd -g ${GID} user && \
useradd -u ${UID} -g ${GID} -m -s /bin/bash user
RUN mkdir /data
RUN chown user:user /data
# Copy the entrypoint script and make it executable
COPY scripts/entrypoint.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/entrypoint.sh