Upload Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM debian:stable-slim
|
| 2 |
+
ENV DEBIAN_FRONTEND=noninteractive
|
| 3 |
+
WORKDIR /app
|
| 4 |
+
RUN apt-get update && apt-get install -y --no-install-recommends git python3 python3-pip python3-venv ca-certificates curl wget procps build-essential && rm -rf /var/lib/apt/lists/*
|
| 5 |
+
COPY entrypoint.sh /entrypoint.sh
|
| 6 |
+
RUN chmod +x /entrypoint.sh
|
| 7 |
+
EXPOSE 7860
|
| 8 |
+
CMD ["/entrypoint.sh"]
|