We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8be4b78 commit 47b9e9bCopy full SHA for 47b9e9b
2 files changed
Dockerfile
@@ -22,6 +22,8 @@ FROM debian:12-slim
22
COPY --from=builder /app/dist/vease-back /usr/local/bin/vease-back
23
RUN chmod +x /usr/local/bin/vease-back
24
25
+RUN apt-get update && apt-get install -y libgomp1
26
+
27
EXPOSE 5000
28
ENV PYTHON_ENV=prod
29
vease-back.spec
@@ -7,15 +7,12 @@ datas = []
7
datas += collect_data_files('opengeodeweb_back')
8
datas += collect_data_files('vease_back')
9
datas += copy_metadata('vease_back', recursive=True)
10
-binaries = []
11
12
-if sys.platform.startswith('linux'):
13
- binaries.append(('/usr/lib/x86_64-linux-gnu/libgomp.so*', '.'))
14
15
a = Analysis(
16
['src/vease_back/app.py'],
17
pathex=[],
18
- binaries=binaries,
+ binaries=[],
19
datas=datas,
20
hiddenimports=[],
21
hookspath=[],
0 commit comments