feat: Add timezone setting

This commit is contained in:
2025-12-13 17:51:20 +09:00
parent 2fc8a32b5f
commit b1c9fa5f8e
4 changed files with 39 additions and 1 deletions
+6 -1
View File
@@ -6,9 +6,12 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
WORKDIR /app
RUN apt-get update \
&& apt-get install -y --no-install-recommends build-essential \
&& apt-get install -y --no-install-recommends build-essential tzdata \
&& rm -rf /var/lib/apt/lists/*
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
@@ -17,4 +20,6 @@ COPY frontend ./frontend
EXPOSE 8080
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8080"]