Update Containerfile
All checks were successful
/ update (push) Successful in 1s

This commit is contained in:
ahoemann 2025-01-28 07:43:02 +00:00
parent b83a60f822
commit 9f8f0c94ff

View file

@ -5,12 +5,10 @@ ENV GIT_URL=https://git.adrianux.net
ENV WEBSITE_URL=https://adrianux.net ENV WEBSITE_URL=https://adrianux.net
ENV DEBUG_MODE=False ENV DEBUG_MODE=False
RUN apk add --no-cache git python3 RUN apk add go
RUN git clone https://git.adrianux.net/ahoemann/Adrianux.net.git /opt COPY . .
RUN python3 -m venv /opt/.venv RUN chmod +x website
RUN /opt/.venv/bin/pip install --no-cache-dir -r requirements.txt
RUN apk del git
EXPOSE 8080 EXPOSE 8080
CMD [ "/opt/.venv/bin/waitress-serve", "--listen=0.0.0.0:8080", "app:app" ] CMD [ "/opt/./website" ]