mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-03-13 11:35:20 +01:00
10 lines
138 B
Text
10 lines
138 B
Text
|
FROM python:3.9
|
||
|
|
||
|
WORKDIR /app
|
||
|
COPY requirements.txt .
|
||
|
RUN pip install -r requirements.txt
|
||
|
COPY . .
|
||
|
|
||
|
ENTRYPOINT ["bash"]
|
||
|
CMD ["server.sh"]
|