cap-table-architect / Dockerfile
3v324v23's picture
Fix Internal Server Error, localize assets, optimize defaults
489de8c
raw
history blame contribute delete
163 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]