scripts/server-scripts/desec-ip-sync/Dockerfile
devaine 3388f8f613
All checks were successful
/ desec-script (push) Successful in 3m14s
fix(build): never using $pwd again
2026-03-06 12:53:55 -06:00

16 lines
261 B
Docker

FROM node:latest
COPY . /desec
WORKDIR /desec/server-scripts/desec-ip-sync/
SHELL ["bash", "-c"]
RUN apt update && apt install python3.11-venv -y
RUN bash run.bash
ENV PATH="/desec/server-scripts/desec-ip-sync/venv/bin:$PATH"
CMD ["python3", "main.py"]