de3sec's picture
Duplicate from rishi9440/remove-photo-background
1a8c6e6
raw
history blame contribute delete
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" ]