8 lines
113 B
Docker
8 lines
113 B
Docker
FROM debian
|
|
|
|
RUN apt-get update && apt-get install -y python3 pip
|
|
|
|
RUN pip install sendgrid docker
|
|
|
|
CMD ["bash"]
|