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 a337850 commit d93c0acCopy full SHA for d93c0ac
‎scripts/docker/Dockerfile‎
@@ -20,3 +20,9 @@ RUN apt-get update && apt-get install -y \
20
COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv
21
22
ENV UV_SYSTEM_PYTHON=1
23
+
24
+COPY . /code
25
26
+WORKDIR /code
27
28
+RUN uv pip install -r requirements.txt
‎scripts/docker/compose.yaml‎
@@ -1,7 +1,8 @@
1
services:
2
typer:
3
- build: .
+ build:
4
+ context: ../../
5
+ dockerfile: scripts/docker/Dockerfile
6
volumes:
7
- ../../:/code
- working_dir: /code
8
command: sleep infinity
0 commit comments