peterspackman commited on
Commit
21b30b5
·
1 Parent(s): 906045f

Remove pycek_public dir

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -4,15 +4,15 @@ RUN useradd -m -u 1000 user
4
  ENV PATH="/home/user/.local/bin:$PATH"
5
 
6
  ENV UV_SYSTEM_PYTHON=1
7
- ENV PYCEK_WORKDIR=/tmp
8
  WORKDIR /app
9
  COPY --chown=user ./deployment/requirements.txt requirements.txt
10
  RUN uv pip install -r requirements.txt
11
 
12
  # Copy and install the local repo, then remove it
13
  COPY --chown=user ./ /pycek_public
14
- RUN uv pip install /pycek_public && rm -rf /pycek
15
  COPY --chown=user ./marimo /app
16
  RUN chown -R user:user /app
17
  USER user
 
18
  CMD ["python", "app.py"]
 
4
  ENV PATH="/home/user/.local/bin:$PATH"
5
 
6
  ENV UV_SYSTEM_PYTHON=1
 
7
  WORKDIR /app
8
  COPY --chown=user ./deployment/requirements.txt requirements.txt
9
  RUN uv pip install -r requirements.txt
10
 
11
  # Copy and install the local repo, then remove it
12
  COPY --chown=user ./ /pycek_public
13
+ RUN uv pip install /pycek_public && rm -rf /pycek_public
14
  COPY --chown=user ./marimo /app
15
  RUN chown -R user:user /app
16
  USER user
17
+ ENV PYCEK_WORKDIR=/tmp
18
  CMD ["python", "app.py"]