request header 더 큰 값 허용

This commit is contained in:
Lectom C Han
2025-12-10 11:13:22 +09:00
parent 3038a2978b
commit 761f948a62
5 changed files with 12 additions and 17 deletions

View File

@@ -19,9 +19,13 @@ FROM debian:trixie-slim
ARG APP_UID=1000
ARG APP_GID=1000
ENV TZ=Asia/Seoul
RUN groupadd -g ${APP_GID} appuser && \
useradd --create-home --shell /usr/sbin/nologin --uid ${APP_UID} --gid ${APP_GID} appuser
RUN ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime && echo ${TZ} > /etc/timezone
WORKDIR /
COPY --from=builder /bin/geoip /usr/local/bin/geoip