aswerdlow commited on
Commit
ec09c85
·
1 Parent(s): e90cdb4
Files changed (1) hide show
  1. Dockerfile +5 -2
Dockerfile CHANGED
@@ -32,14 +32,17 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
32
 
33
  # Install `uv`
34
  RUN pip install --upgrade pip \
35
- && pip install uv
36
 
37
  # Create a non-root user
38
  RUN useradd -m -u 1000 appuser
39
 
40
- RUN git clone -b docker_wip https://github.com/alexanderswerdlow/unidisc.git /home/appuser/app
41
  RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts
42
 
 
 
 
43
 
44
  # Set working directory
45
  WORKDIR /home/appuser/app
 
32
 
33
  # Install `uv`
34
  RUN pip install --upgrade pip \
35
+ && pip install uv
36
 
37
  # Create a non-root user
38
  RUN useradd -m -u 1000 appuser
39
 
40
+
41
  RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts
42
 
43
+ RUN echo "ls" > test.txt
44
+ RUN git clone -b docker_wip https://github.com/alexanderswerdlow/unidisc.git /home/appuser/app
45
+
46
 
47
  # Set working directory
48
  WORKDIR /home/appuser/app