Skip to content

Commit bcf5baf

Browse files
committed
add flatcar-sync image
1 parent b0925ab commit bcf5baf

File tree

4 files changed

+581
-0
lines changed

4 files changed

+581
-0
lines changed

images/flatcar-sync/Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM python:3.12-alpine
2+
3+
RUN apk add --no-cache gnupg \
4+
&& pip install --no-cache-dir requests boto3
5+
6+
COPY --chmod=0444 flatcar.gpg /usr/local/share/flatcar.gpg
7+
8+
# RUN gpg --batch --import /usr/local/share/flatcar.gpg
9+
10+
COPY --chmod=0755 sync.py /usr/local/bin/sync.py
11+
12+
ENTRYPOINT ["/usr/local/bin/sync.py"]

0 commit comments

Comments
 (0)