Skip to content

Commit

Permalink
fix: Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
in0rdr committed Nov 26, 2024
1 parent 9bf20cf commit 2472d29
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions kubernetes/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
FROM docker.io/python:3.9
FROM docker.io/python:3.12

COPY vault_snapshot /
CMD ["/vault_snapshot/vault_snapshot.py"]
COPY vault_snapshot /vault_snapshot
COPY requirements.txt /vault_snapshot/

WORKDIR /vault_snapshot
RUN pip install -r requirements.txt

CMD ["./vault_snapshot.py"]

0 comments on commit 2472d29

Please sign in to comment.