improve docker environment
All checks were successful
Flask Run Test / Flask-Run-Test (push) Successful in 9s

This commit is contained in:
Andrew K
2026-01-09 15:08:32 +09:00
parent bd93caa375
commit f3f9979a0e

View File

@@ -3,6 +3,7 @@ WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
COPY container/* .
RUN mkdir -p /app/uploads
EXPOSE 3133