public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
data/Dockerfiles/dockerapi/Dockerfile
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
Author
Date
Commit
Line
Code
1
FROM alpine:3.23
3
LABEL maintainer = "The Infrastructure Company GmbH <[email protected]>"
5
ARG PIP_BREAK_SYSTEM_PACKAGES=1
6
WORKDIR /app
8
RUN apk add --update --no-cache python3 \
9
py3-pip \
10
openssl \
11
tzdata \
12
py3-psutil \
13
py3-redis \
14
py3-async-timeout \
15
&& pip3 install --upgrade pip \
16
fastapi \
17
uvicorn \
18
aiodocker \
19
docker
20
RUN mkdir /app/modules
22
COPY docker-entrypoint.sh /app/
23
COPY main.py /app/main.py
24
COPY modules/ /app/modules/
26
ENTRYPOINT ["/bin/sh", "/app/docker-entrypoint.sh"]
27
CMD ["python", "main.py"]