File size: 288 Bytes
88a6039
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5e933af
88a6039
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#Docker Image for Azure

FROM python:3.11-slim

WORKDIR /app

COPY requirements.txt ./requirements.txt

RUN pip3 install -r requirements.txt


COPY . /app

EXPOSE 8501


CMD ["streamlit", "run", "mental_health_app.py", "--server.port=7860", "--server.address=0.0.0.0"]