We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbf4099 commit 0017e8aCopy full SHA for 0017e8a
.github/workflows/validate.yml
@@ -30,7 +30,9 @@ jobs:
30
cache-dependency-glob: "requirements**.txt"
31
32
- name: Set up Python ${{ matrix.python-version }}
33
- run: uv python install ${{ matrix.python-version }}
+ uses: actions/setup-python@v5
34
+ with:
35
+ python-version: ${{ matrix.python-version }}
36
37
- name: Install the project
38
run: uv pip sync requirements.txt
Dockerfile
@@ -1,10 +1,8 @@
1
FROM phidata/python:3.12
2
3
ARG USER=app
4
-ARG APP_DIR=${USER_LOCAL_DIR}/${USER}
+ARG APP_DIR=/app
5
ENV APP_DIR=${APP_DIR}
6
-# Add APP_DIR to PYTHONPATH
7
-ENV PYTHONPATH="${APP_DIR}:${PYTHONPATH}"
8
9
# Create user and home directory
10
RUN groupadd -g 61000 ${USER} \
0 commit comments