|
|
|
@ -2,12 +2,14 @@ FROM python:alpine |
|
|
|
|
|
|
|
|
|
|
|
WORKDIR / |
|
|
|
WORKDIR / |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RUN apk add --update --no-cache g++ gcc libxslt-dev |
|
|
|
|
|
|
|
|
|
|
|
COPY requirements.txt . |
|
|
|
COPY requirements.txt . |
|
|
|
|
|
|
|
|
|
|
|
RUN pip install -r requirements.txt |
|
|
|
RUN pip install -r requirements.txt |
|
|
|
|
|
|
|
|
|
|
|
ADD docker/stats/. . |
|
|
|
ADD . . |
|
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT [ "python", "facebook/mrkoll.py" ] |
|
|
|
ENTRYPOINT [ "python", "stats.py" ] |
|
|
|
|
|
|
|
|
|
|
|
# docker buildx build --file docker/stats/Dockerfile --platform linux/arm64,linux/amd64 -t mrkoll . |
|
|
|
# docker buildx build --file docker/stats/Dockerfile --platform linux/arm64,linux/amd64 -t mrkoll . |