mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2024-12-23 02:04:46 +02:00
f3da8bb85f
* Update `dockerapi/Dockerfile` CMD from shell to exec format * Update `postfix/Dockerfile` CMD from shell to exec format * Update `sogo/Dockerfile` CMD from shell to exec format * Update `unbound/Dockerfile` CMD from shell to exec format * Update `watchdog/Dockerfile` CMD from shell to exec format
27 lines
533 B
Docker
27 lines
533 B
Docker
FROM alpine:3.20
|
|
|
|
LABEL maintainer = "The Infrastructure Company GmbH <info@servercow.de>"
|
|
|
|
ARG PIP_BREAK_SYSTEM_PACKAGES=1
|
|
WORKDIR /app
|
|
|
|
RUN apk add --update --no-cache python3 \
|
|
py3-pip \
|
|
openssl \
|
|
tzdata \
|
|
py3-psutil \
|
|
py3-redis \
|
|
py3-async-timeout \
|
|
&& pip3 install --upgrade pip \
|
|
fastapi \
|
|
uvicorn \
|
|
aiodocker \
|
|
docker
|
|
RUN mkdir /app/modules
|
|
|
|
COPY docker-entrypoint.sh /app/
|
|
COPY main.py /app/main.py
|
|
COPY modules/ /app/modules/
|
|
|
|
ENTRYPOINT ["/bin/sh", "/app/docker-entrypoint.sh"]
|
|
CMD ["python", "main.py"] |