Skip to content

Commit 55fbdac

Browse files
committed
New docker file configuration
1 parent 9a5798c commit 55fbdac

File tree

11 files changed

+11
-0
lines changed

11 files changed

+11
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM python:3
2+
3+
WORKDIR /usr/src/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" ]

Pipfile

100644100755
File mode changed.

Pipfile.lock

100644100755
File mode changed.

__pycache__/components.cpython-310.pyc

100644100755
File mode changed.

app.py

100644100755
File mode changed.

components.py

100644100755
File mode changed.

img/pong1.png

100644100755
File mode changed.

img/pong2.png

100644100755
File mode changed.

img/pong3.png

100644100755
File mode changed.

readme.md

100644100755
File mode changed.

0 commit comments

Comments
 (0)