Skip to content

Commit ce26811

Browse files
committed
create Dockerfile for Python
1 parent 2ae2c7f commit ce26811

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM python:alpine
2+
3+
WORKDIR /app
4+
5+
COPY requirements.txt .
6+
7+
RUN pip install --no-cache-dir -r requirements.txt
8+
9+
COPY . .
10+
11+
CMD ["python", "app.py"]

0 commit comments

Comments
 (0)