hail_dashboard / Dockerfile
andrewammann's picture
Update Dockerfile
8628e9b verified
raw
history blame contribute delete
171 Bytes
FROM python:3.11
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
Expose 7860
CMD ["python", "app.py"]