Praxis_Bot/Dockerfile_standalone_channelRewards.Dockerfile
Alex Orid 4f3e5dcef7 Progress & bug Fix
Standalone Channel Rewards cannot use 3.10
2021-05-12 17:15:23 -04:00

11 lines
291 B
Docker

FROM python:3.7.10-alpine3.12
WORKDIR /Praxis
COPY requirements_sa_command.txt requirements_sa_command.txt
RUN apk add --update gcc libc-dev linux-headers && rm -rf /var/cache/apk/*
RUN pip3 install -r requirements_sa_command.txt
COPY . .
CMD [ "python3", "standalone_channelrewards.py"]