Skip to content

Commit 0017e8a

Browse files
committed
v2.5.0a11
1 parent cbf4099 commit 0017e8a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/validate.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
cache-dependency-glob: "requirements**.txt"
3131

3232
- name: Set up Python ${{ matrix.python-version }}
33-
run: uv python install ${{ matrix.python-version }}
33+
uses: actions/setup-python@v5
34+
with:
35+
python-version: ${{ matrix.python-version }}
3436

3537
- name: Install the project
3638
run: uv pip sync requirements.txt

Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
FROM phidata/python:3.12
22

33
ARG USER=app
4-
ARG APP_DIR=${USER_LOCAL_DIR}/${USER}
4+
ARG APP_DIR=/app
55
ENV APP_DIR=${APP_DIR}
6-
# Add APP_DIR to PYTHONPATH
7-
ENV PYTHONPATH="${APP_DIR}:${PYTHONPATH}"
86

97
# Create user and home directory
108
RUN groupadd -g 61000 ${USER} \

0 commit comments

Comments
 (0)