rishi9440's picture
Update Dockerfile
0a0a011
raw
history blame contribute delete
No virus
194 Bytes
FROM pytorch/pytorch:latest
FROM nginxinc/nginx-unprivileged:alpine
COPY . /usr/share/nginx/html
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD [ "streamlit", "run", "app.py" ]