BytesIOtoBase64 / Dockerfile
Rooni's picture
Create Dockerfile
e2186ba verified
raw
history blame contribute delete
153 Bytes
FROM python:3.8-slim
COPY requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
COPY . /app
CMD ["python", "app.py"]