You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM python:alpine |
|
|
|
WORKDIR / |
|
|
|
COPY requirements.txt . |
|
|
|
RUN pip install -r requirements.txt |
|
|
|
ADD docker/stats/. . |
|
|
|
ENTRYPOINT [ "python", "facebook/mrkoll.py" ] |
|
|
|
# docker buildx build --file docker/stats/Dockerfile --platform linux/arm64,linux/amd64 -t mrkoll . |