Praxis_Bot/Dockerfile_standalone_channelPoints
2021-04-25 11:46:35 -04:00

11 lines
292 B
Plaintext

FROM python:3.10.0a7-alpine3.13
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_channelpoints.py"]