scripts/server-scripts/desec-ip-sync/Dockerfile
devaine ddbdd92aa4
Some checks failed
/ desec-script (push) Failing after 1m17s
build(Dockerfile): creating new source
2026-03-06 00:55:53 -06:00

14 lines
206 B
Docker

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