ecg-real-time / Dockerfile
samyak152002's picture
Update Dockerfile
9ae7a0f verified
raw
history blame contribute delete
210 Bytes
FROM python:3.8-slim
WORKDIR /app
COPY . /app
COPY mitbih_train.csv /app/mitbih_train.csv
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8050
CMD ["gunicorn", "-b", "0.0.0.0:8050", "app:server"]