Files
ethereum-rpc-docker/dynaconf/Dockerfile
2022-09-25 23:54:04 +02:00

11 lines
158 B
Docker

from python:bullseye
RUN pip install --upgrade pip
RUN pip install flask
RUN pip install flask_sqlalchemy
COPY src src
CMD ["python", "-u", "src/app.py"]