-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathDockerfile
More file actions
27 lines (21 loc) · 765 Bytes
/
Dockerfile
File metadata and controls
27 lines (21 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM python:3.12.4-bullseye
ARG UID=1337
ARG GID=1337
RUN pip install 'cachecontrol[filecache]' requests lockfile packaging 'pydantic<2.0.0' \
&& apt-get update && apt-get install -y rsync cron
# add our cronjob
COPY docker/update.cron /etc/cron.d/meta-update
RUN chmod 644 /etc/cron.d/meta-update \
&& crontab /etc/cron.d/meta-update
# install entrypoint
COPY docker/entrypoint.sh /usr/local/bin/entrypoint
RUN chmod +x /usr/local/bin/entrypoint
RUN groupadd -g $GID user \
&& useradd -m -g $GID -u $UID user \
&& mkdir -p /home/user/.ssh \
&& ssh-keyscan github.com > /home/user/.ssh/known_hosts \
&& mkdir -p /app \
&& chown -R $UID:$GID /app /home/user/.ssh
COPY . /app/
ENTRYPOINT ["/usr/local/bin/entrypoint"]
CMD ["update"]