Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
adding nano for beeing able to edit the settings.txt in the CLI
  • Loading branch information
SoulInfernoDE authored Nov 25, 2024
1 parent edcaa5f commit 3f3cf19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ FROM python:alpine
WORKDIR /usr/src/app

# install dependencies for domain-connect-dyndns
RUN apk add -U --no-cache gcc build-base linux-headers ca-certificates python3 python3-dev libffi-dev libressl-dev
RUN apk add -U --no-cache gcc build-base linux-headers ca-certificates python3 python3-dev libffi-dev libressl-dev nano

RUN pip install domain-connect-dyndns

COPY update.sh /etc/periodic/15min/update
RUN chmod +x /etc/periodic/15min/update

CMD [ "crond", "-l", "2", "-f" ]
CMD [ "crond", "-l", "2", "-f" ]

0 comments on commit 3f3cf19

Please sign in to comment.