12 lines
352 B
Docker
12 lines
352 B
Docker
#syntax=docker/dockerfile:1.2@sha256:e2a8561e419ab1ba6b2fe6cbdf49fd92b95912df1cf7d313c3e2230a333fdbcc
|
|
FROM python:3.9-alpine
|
|
|
|
RUN pip install base58
|
|
|
|
ADD third_party/pyth/pyth_utils.py /usr/src/pyth/pyth_utils.py
|
|
ADD third_party/pyth/check_attestations.py /usr/src/pyth/check_attestations.py
|
|
|
|
RUN chmod a+rx /usr/src/pyth/*.py
|
|
|
|
ENV READINESS_PORT=2000
|