Purchase_record / Dockerfile
euler314's picture
Create Dockerfile
652459d verified
raw
history blame
245 Bytes
FROM python:3.9-slim
WORKDIR /code
COPY requirements.txt /code/requirements.txt
COPY app.py /code/app.py
COPY credentials.json /code/credentials.json
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
CMD ["python", "app.py"]