Files
backgroundremover/Dockerfile
2024-05-01 12:31:54 -04:00

13 lines
158 B
Docker

FROM python:latest
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5124
CMD ["python", "app.py"]