Files
adrive/Dockerfile
Andrew K f3f9979a0e
All checks were successful
Flask Run Test / Flask-Run-Test (push) Successful in 9s
improve docker environment
2026-01-09 15:08:32 +09:00

10 lines
197 B
Docker

FROM python:3.9.5
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
COPY container/* .
RUN mkdir -p /app/uploads
EXPOSE 3133
CMD ["python", "app.py"]