File size: 111 Bytes
afcfd4d
 
 
 
 
 
1
2
3
4
5
6
7
FROM python:3.12-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 8292
CMD ["ledger-svc"]