Spaces:
Build error
Build error
File size: 157 Bytes
4d7dfa2 | 1 2 3 4 5 6 7 8 9 | FROM python:3.8-slim-buster
WORKDIR /app
COPY . /app
RUN apt update -y && install awscli -y
RUN pip install -r requirements.text
CMD ["python 3","app.py"] |