Adrianux.net/Containerfile

16 lines
423 B
Text
Raw Normal View History

FROM alpine:latest
WORKDIR /opt/
ENV git_url=https://git.adrianux.net
ENV website_url=https://adrianux.net
ENV debug_mode=False
2025-01-16 07:09:57 +00:00
RUN apk add --no-cache git python3
RUN git clone https://git.adrianux.net/ahoemann/Adrianux.net.git /opt
RUN python3 -m venv /opt/.venv
RUN /opt/.venv/bin/pip install -r requirements.txt
RUN apk del git
2024-12-06 07:09:40 +00:00
EXPOSE 8080
CMD [ "/opt/.venv/bin/waitress-serve", "--listen=0.0.0.0:8080", "app:app" ]