Skip to content

Commit 0ab4728

Browse files
Start building Python 3.13 container for tests
1 parent c6863d6 commit 0ab4728

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

containers/3.13/Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -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

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
name=skyfield-3.13
4+
5+
set -e
6+
cd "$(readlink -f $(dirname "${BASH_SOURCE[0]}"))"
7+
podman build -t $name .
8+
exec podman run -it \
9+
-v $PWD/../..:/work \
10+
$name

0 commit comments

Comments
 (0)