remove-background-ai / Dockerfile
Sharan Thakur
keep no-cache-dir
5b606dd
raw
history blame
196 Bytes
FROM python:3.9
RUN mkdir src
RUN mkdir app
WORKDIR /src/app
COPY ./requirements.txt ./
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD [ "python3", "app.py" ]