GIFactory / Dockerfile
MakiAi's picture
[refactor] Docker設定の簡略化とコマンド修正
8b0f171
Raw
History Blame Contribute Delete
287 Bytes
FROM python:3.11
USER root
RUN apt-get update && apt-get install -y imagemagick
WORKDIR /app
RUN chmod 777 -R /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# COPY . /app
# RUN chmod 777 -R /app
# CMD ["python3", "-m", "streamlit", "run", "app.py"]