Files
arcade/Dockerfile
2026-04-15 10:04:24 +00:00

15 lines
293 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN python -m pip install --no-cache-dir --upgrade pip \
&& python -m pip install --no-cache-dir -r /app/requirements.txt \
&& python -m pip show Flask
COPY . /app
EXPOSE 5000
CMD ["python", "app.py"]