Skip to content

Commit a60cb20

Browse files
committed
fix: broken devcontainer uv path
1 parent 8ee6a54 commit a60cb20

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ ENV VIRTUAL_ENV=/usr/local
99
ADD --chmod=755 https://astral.sh/uv/install.sh /install.sh
1010
RUN /install.sh && rm /install.sh
1111

12+
ENV PATH="/root/.local/bin/:$PATH"
13+
1214
# pyright requires Node
1315
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash \
1416
&& . $HOME/.bashrc \
@@ -17,4 +19,4 @@ RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | b
1719

1820
COPY . .
1921

20-
RUN /root/.cargo/bin/uv pip install --no-cache -e . --system
22+
RUN uv pip install --no-cache -e . --system

.github/workflows/ferry_vm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ jobs:
8888
- name: Regenerate static catalog on server
8989
run: |
9090
curl --silent --show-error -H "X-FERRY-SECRET: ${{secrets.FERRY_SECRET}}" https://api.coursetable.com/api/catalog/refresh
91-
curl --silent --show-error -H "X-FERRY-SECRET: ${{secrets.FERRY_SECRET}}" https://api-staging.coursetable.com/api/catalog/refresh
91+
curl --silent --show-error -H "X-FERRY-SECRET: ${{secrets.FERRY_SECRET}}" https://api-staging.coursetable.com/api/catalog/refresh

docs/db_diagram.pdf

86 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)