-
Notifications
You must be signed in to change notification settings - Fork 10
/
Dockerfile
42 lines (30 loc) · 1.34 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
FROM python:3.13.0-slim
ARG TIMEZONE="Asia/Jerusalem"
RUN ln -fs /usr/share/zoneinfo/$TIMEZONE /etc/localtime
RUN apt-get update && apt-get -y install build-essential && rm -rf /var/lib/apt/lists/*
WORKDIR /usr/switcher_webapi
COPY LICENSE app/webapp.py requirements.txt ./
RUN pip install -U pip
RUN AIOHTTP_NO_EXTENSIONS=1 \
FROZENLIST_NO_EXTENSIONS=1 \
MULTIDICT_NO_EXTENSIONS=1 \
YARL_NO_EXTENSIONS=1 \
pip install -r requirements.txt
EXPOSE 8000
ENV LOG_LEVEL=INFO
CMD ["/bin/sh", "-c", "python webapp.py -p 8000 -l $LOG_LEVEL"]
ARG BUILD_DATE
ARG VCS_REF
ARG VERSION
LABEL org.opencontainers.image.created=$BUILD_DATE \
org.opencontainers.image.authors="Tomer Figenblat <mailto:tomer@tomfi.info>" \
org.opencontainers.image.url="https://hub.docker.com/r/tomerfi/switcher_webapi" \
org.opencontainers.image.documentation="https://switcher-webapi.tomfi.info" \
org.opencontainers.image.source="https://github.com/TomerFi/switcher_webapi" \
org.opencontainers.image.version=$VERSION \
org.opencontainers.image.revision=$VCS_REF \
org.opencontainers.image.vendor="https://switcher.co.il/" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name=$VERSION \
org.opencontainers.image.title="tomerfi/switcher_webapi" \
org.opencontainers.image.description="Containerized web service integrating with Switcher devices"