Skip to content

Commit 165b8fc

Browse files
committed
feat: Add Dockerfile and .dockerignore
1 parent 3c7e910 commit 165b8fc

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

.dockerignore

+32
Original file line numberDiff line numberDiff line change
@@ -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

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM python:3.12-alpine
2+
3+
COPY ./requirements.txt /requirements.txt
4+
RUN python -m pip install -r /requirements.txt
5+
6+
COPY . /redis-proxy
7+
WORKDIR /redis-proxy
8+
9+
ENTRYPOINT ["sh", "gunicorn.sh"]

0 commit comments

Comments
 (0)