Skip to content

Commit c4224a3

Browse files
committed
add Dockerfile
1 parent 3ce2344 commit c4224a3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM python:3.9
2+
LABEL "description"="Photos.network core system"
3+
LABEL "version"="0.0.1"
4+
LABEL "maintainer"="github.com/photos-network"
5+
6+
WORKDIR /app
7+
8+
ADD . .
9+
10+
RUN python3 setup.py install
11+
12+
CMD [ "python3", "/usr/local/bin/core" ]

0 commit comments

Comments
 (0)