We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c0705ae + 496e3f6 commit 983420dCopy full SHA for 983420d
.gitignore
@@ -10,3 +10,4 @@ lib/
10
.DS_Store
11
.idea/
12
apod/__pycache__/
13
+venv/
Dockerfile
@@ -0,0 +1,9 @@
1
+FROM python:3-alpine
2
+
3
+WORKDIR /usr/src/app
4
+COPY requirements.txt ./
5
+RUN pip install --no-cache-dir -r requirements.txt
6
+COPY . .
7
+EXPOSE 5000
8
+ENTRYPOINT ["python"]
9
+CMD ["application.py"]
0 commit comments