We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6863d6 commit 0ab4728Copy full SHA for 0ab4728
containers/3.13/Dockerfile
@@ -0,0 +1,7 @@
1
+FROM python:3.13-slim
2
+WORKDIR /work
3
+
4
+RUN pip install https://github.com/brandon-rhodes/assay/archive/master.zip
5
+RUN pip install certifi jplephem numpy pandas sgp4
6
7
+CMD ["bash", "-c", "PYTHONPATH=$PWD ./test-code.sh"]
containers/3.13/run
@@ -0,0 +1,10 @@
+#!/bin/bash
+name=skyfield-3.13
+set -e
+cd "$(readlink -f $(dirname "${BASH_SOURCE[0]}"))"
+podman build -t $name .
8
+exec podman run -it \
9
+ -v $PWD/../..:/work \
10
+ $name
0 commit comments