Skip to content

Commit faf9b50

Browse files
committed
feat: docker and license
1 parent 812bc22 commit faf9b50

File tree

5 files changed

+726
-0
lines changed

5 files changed

+726
-0
lines changed

‎.dockerignore‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.env
2+
myenv
3+
__pycache__/
4+
thu
5+
thunder-collection_codingHandleApi's.json
6+
env.example

‎Dockerfile‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM python:3.9-slim
2+
WORKDIR /app
3+
COPY requirements.txt .
4+
RUN pip install --no-cache-dir -r requirements.txt
5+
COPY . .
6+
EXPOSE 8080
7+
CMD ["python", "app.py"]

0 commit comments

Comments
 (0)