Files
adrive/Dockerfile
Andrew K a48abc3b53
All checks were successful
Flask Run Test / Flask-Run-Test (push) Successful in 10s
create docker files
2026-01-09 15:01:56 +09:00

9 lines
178 B
Docker

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