file_extension_change / Dockerfile
euler314's picture
Update Dockerfile
65be7bc verified
raw
history blame
413 Bytes
# ---- Dockerfile ----
FROM python:3.9-slim
# --- Environment ---
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
STREAMLIT_HOME=/tmp/.streamlit \
HOME=/tmp
RUN mkdir -p $STREAMLIT_HOME
# --- Install deps ---
RUN pip install --no-cache-dir streamlit==1.45.1 pillow
# --- Copy code ---
COPY app.py /app/app.py
WORKDIR /app
# --- Run the app ---
EXPOSE 7860
CMD ["streamlit", "run", "app.py"]