-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Dockerfile
50 lines (37 loc) · 1.35 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
### Builder image
# using ubuntu LTS version
FROM ubuntu:latest AS builder-image
# avoid stuck build due to user prompt
ARG DEBIAN_FRONTEND=noninteractive
# install python
RUN apt-get update && apt-get install --no-install-recommends -y python3.11 python3.11-dev python3.11-venv python3-pip python3-wheel build-essential && \
apt-get clean && rm -rf /var/lib/apt/lists/*
# create and activate virtual environment
# using final folder name to avoid path issues with packages
RUN python3.11 -m venv /root/venv
ENV PATH="/root/venv/bin:$PATH"
# install requirements
COPY requirements.txt .
RUN pip3 install --no-cache-dir wheel
RUN pip3 install --no-cache-dir -r requirements.txt
### Runner image
FROM ubuntu:latest AS runner-image
# install python
RUN apt-get update && apt-get install --no-install-recommends -y python3.11 python3-venv && \
apt-get clean && rm -rf /var/lib/apt/lists/*
# use virtual environment
COPY --from=builder-image /root/venv /root/venv
# create directory for runtime and switch to user
RUN mkdir -p /run
WORKDIR /run
COPY mediator.py .
# expose server listening ports
EXPOSE 80/tcp
EXPOSE 443/tcp
# make sure all messages always reach console
ENV PYTHONUNBUFFERED=1
# activate virtual environment
ENV VIRTUAL_ENV=/root/venv
ENV PATH="/root/venv/bin:$PATH"
# run server when container starts
CMD [ "python3", "./mediator.py", "--log-level", "1" ]