AutomationAI / Dockerfile
applepie69's picture
Update Dockerfile
08d5d1b verified
raw
history blame contribute delete
328 Bytes
FROM python:3.12-alpine AS python-stage
FROM n8nio/n8n:latest
USER root
COPY --from=python-stage /usr/local/bin/python3 /usr/local/bin/python3
COPY --from=python-stage /usr/local/lib/python3.12 /usr/local/lib/python3.12
COPY --from=python-stage /usr/local/lib/libpython3.12.so.1.0 /usr/local/lib/libpython3.12.so.1.0
USER node