-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python:3.12-alpine has an issue of high memory usage when bots are enabled
- Loading branch information
Showing
1 changed file
with
7 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,16 @@ | ||
FROM python:3.12-alpine AS builder | ||
|
||
WORKDIR /usr/src/app | ||
|
||
RUN apk add --no-cache git gcc g++ musl-dev libffi-dev openssl-dev file make | ||
|
||
RUN mkdir -p ./zwift-offline | ||
COPY ./ ./zwift-offline | ||
|
||
RUN pip install --user --requirement ./zwift-offline/requirements.txt | ||
RUN pip install --user garth | ||
|
||
FROM python:3.12-alpine | ||
FROM python:3.12-slim | ||
LABEL maintainer="zoffline <[email protected]>" | ||
|
||
WORKDIR /usr/src/app | ||
WORKDIR /usr/src/app/zwift-offline | ||
COPY . . | ||
|
||
COPY --from=builder /root/.local/ /root/.local/ | ||
ENV PATH=/root/.local/bin:$PATH | ||
RUN pip install --no-cache-dir --root-user-action=ignore -r requirements.txt | ||
RUN pip install --no-cache-dir --root-user-action=ignore garth | ||
|
||
COPY --from=builder /usr/src/app/zwift-offline/ zwift-offline/ | ||
RUN chmod 777 zwift-offline/storage | ||
RUN chmod 777 storage | ||
|
||
EXPOSE 443 80 3024/udp 3025 53/udp | ||
|
||
VOLUME /usr/src/app/zwift-offline/storage | ||
|
||
CMD [ "python", "zwift-offline/standalone.py" ] | ||
CMD [ "python", "standalone.py" ] |