forked from capedayo/minya_hotomoe
Compare commits
2 commits
b98df2ecdb
...
ae4c3318ab
Author | SHA1 | Date | |
---|---|---|---|
ae4c3318ab | |||
97fea9f67a |
3 changed files with 15 additions and 1 deletions
3
.dockerignore
Normal file
3
.dockerignore
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
Dockerfile
|
||||||
|
.git
|
||||||
|
.dockerignore
|
12
Dockerfile
Normal file
12
Dockerfile
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
FROM docker.io/python:3.11-bookworm
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y libgl1 && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
RUN mkdir -p /opt/minya
|
||||||
|
WORKDIR /opt/minya
|
||||||
|
|
||||||
|
ADD . /opt/minya
|
||||||
|
|
||||||
|
RUN python3 -m pip install -r requirements.txt
|
||||||
|
|
||||||
|
CMD ["python3", "minya.py"]
|
1
lib64
1
lib64
|
@ -1 +0,0 @@
|
||||||
lib
|
|
Loading…
Reference in a new issue