froth61 commited on
Commit
ebfc8a0
·
verified ·
1 Parent(s): 84e1ba3

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]