24 lines
458 B
Docker
24 lines
458 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.11-slim
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE=1 \
|
|
PYTHONUNBUFFERED=1
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends ca-certificates curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY entrypoint.sh ./
|
|
COPY signet_miner.py ./
|
|
|
|
RUN chmod +x /app/entrypoint.sh
|
|
|
|
VOLUME ["/bitcoin"]
|
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|