We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c7e910 commit 165b8fcCopy full SHA for 165b8fc
.dockerignore
@@ -0,0 +1,32 @@
1
+**/.idea
2
+
3
+**/__pycache__
4
+**/.venv
5
+**/.classpath
6
+**/.dockerignore
7
+**/.env
8
+**/.git
9
+**/.gitignore
10
+**/.project
11
+**/.settings
12
+**/.toolstarget
13
+**/.vs
14
+**/.vscode
15
+**/*.*proj.user
16
+**/*.dbmdl
17
+**/*.jfm
18
+**/bin/*.sh
19
+**/charts
20
+**/docker-compose*
21
+**/compose*
22
+**/Dockerfile*
23
+**/node_modules
24
+**/npm-debug.log
25
+**/obj
26
+**/secrets.dev.yaml
27
+**/values.dev.yaml
28
+**/app/data
29
+**/app/ld_files
30
+**/app/igd-metadata
31
+LICENSE
32
+README.md
Dockerfile
@@ -0,0 +1,9 @@
+FROM python:3.12-alpine
+COPY ./requirements.txt /requirements.txt
+RUN python -m pip install -r /requirements.txt
+COPY . /redis-proxy
+WORKDIR /redis-proxy
+ENTRYPOINT ["sh", "gunicorn.sh"]
0 commit comments