JIMMYGGG commited on
Commit
ee24f69
·
verified ·
1 Parent(s): e2cb839

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -20
Dockerfile DELETED
@@ -1,20 +0,0 @@
1
- FROM snailyp/blackbox2api:latest
2
-
3
- ADD file ... in /
4
- CMD ["bash"]
5
- ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
6
- ENV LANG=C.UTF-8
7
- RUN /bin/sh -c set -eux;
8
- ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
9
- ENV PYTHON_VERSION=3.10.15
10
- RUN /bin/sh -c set -eux;
11
- RUN /bin/sh -c set -eux;
12
- CMD ["python3"]
13
- WORKDIR /app
14
- COPY ./api /app/api # buildkit
15
- COPY ./main.py /app # buildkit
16
- COPY ./.env /app # buildkit
17
- COPY ./requirements.txt /app # buildkit
18
- RUN /bin/sh -c pip install
19
- EXPOSE map[8001/tcp:{}]
20
- CMD ["uvicorn" "main:app" "--host" "0.0.0.0"