2026-08-21 23:19:27 +02:00
|
|
|
FROM python:3.14.7-alpine3.24
|
|
|
|
|
|
|
|
|
|
# Install dnsmasq
|
|
|
|
|
RUN apk --update --no-cache add dnsmasq
|
|
|
|
|
|
|
|
|
|
# Install libraries
|
|
|
|
|
COPY ./requirements.txt /requirements.txt
|
|
|
|
|
RUN pip3 install -r /requirements.txt
|
|
|
|
|
|
|
|
|
|
# Copy source
|
|
|
|
|
COPY ./run.sh /run.sh
|
|
|
|
|
COPY ./app/ /app
|
|
|
|
|
|
2026-08-24 23:11:35 +02:00
|
|
|
WORKDIR /app
|
2026-08-21 23:19:27 +02:00
|
|
|
|
|
|
|
|
CMD ["/run.sh"]
|