Drac0528 commited on
Commit
3c2807e
·
verified ·
1 Parent(s): 2aa4ea6

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -23
Dockerfile DELETED
@@ -1,23 +0,0 @@
1
- FROM python:3.11-slim
2
-
3
- WORKDIR /app
4
-
5
- RUN apt-get update && apt-get install -y --no-install-recommends \
6
- curl \
7
- ca-certificates \
8
- && rm -rf /var/lib/apt/lists/*
9
-
10
- COPY . /app
11
-
12
- RUN pip install --no-cache-dir "openenv-core[core]>=0.2.2" && \
13
- pip install --no-cache-dir .
14
-
15
- ENV PYTHONUNBUFFERED=1
16
- ENV ENABLE_WEB_INTERFACE=true
17
-
18
- EXPOSE 8000
19
-
20
- HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
21
- CMD curl -f http://localhost:8000/health || exit 1
22
-
23
- CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "8000"]