FreshPixels commited on
Commit
3c0194d
·
verified ·
1 Parent(s): 0411e0d

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -20
Dockerfile DELETED
@@ -1,20 +0,0 @@
1
- FROM python:3.11-slim
2
-
3
- RUN apt-get update && apt-get install -y curl git && rm -rf /var/lib/apt/lists/*
4
-
5
- RUN useradd -m -u 1000 user
6
- USER user
7
- ENV PATH="/home/user/.local/bin:$PATH"
8
-
9
- WORKDIR /app
10
-
11
- COPY --chown=user:user requirements.txt .
12
- RUN pip install --no-cache-dir -r requirements.txt
13
-
14
- COPY --chown=user:user . .
15
-
16
- RUN mkdir -p /app/skills /app/projects /app/downloads /app/prompts /app/build_modes && \
17
- echo '{}' > /app/build_modes/build_modes.json
18
-
19
- EXPOSE 7860
20
- CMD ["python", "server.py"]