We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e7289c commit db317abCopy full SHA for db317ab
.dockerignore
@@ -0,0 +1,7 @@
1
+.github
2
+.vscode
3
+docs
4
+images
5
+build
6
+dist
7
+shares
Dockerfile
@@ -0,0 +1,14 @@
+FROM python:3.9.12-buster
+
+WORKDIR /usr/src/app
+COPY . .
+RUN ls
8
9
+RUN python -m pip install galois
10
11
+ENTRYPOINT [ "python" ]
12
13
+CMD [ "main.py" ]
14
Pipfile
@@ -8,8 +8,8 @@ galois = "*"
[dev-packages]
pyinstaller = "*"
-pywin32-ctypes = "*"
-pefile = "*"
+pywin32-ctypes = {version = "*", sys_platform = "== 'win32'"}
+pefile = {version = "*", sys_platform = "== 'win32'"}
[requires]
15
python_version = "3.9"
0 commit comments