Skip to content

Commit db317ab

Browse files
committed
added dockerfile and updated pipfile for windows
1 parent 7e7289c commit db317ab

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

.dockerignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.github
2+
.vscode
3+
docs
4+
images
5+
build
6+
dist
7+
shares

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM python:3.9.12-buster
2+
3+
WORKDIR /usr/src/app
4+
5+
COPY . .
6+
7+
RUN ls
8+
9+
RUN python -m pip install galois
10+
11+
ENTRYPOINT [ "python" ]
12+
13+
CMD [ "main.py" ]
14+

Pipfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ galois = "*"
88

99
[dev-packages]
1010
pyinstaller = "*"
11-
pywin32-ctypes = "*"
12-
pefile = "*"
11+
pywin32-ctypes = {version = "*", sys_platform = "== 'win32'"}
12+
pefile = {version = "*", sys_platform = "== 'win32'"}
1313

1414
[requires]
1515
python_version = "3.9"

0 commit comments

Comments
 (0)