We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fde8a9f commit 1e3b983Copy full SHA for 1e3b983
2 files changed
docker/downloader.Dockerfile
@@ -10,7 +10,8 @@ WORKDIR /app
10
COPY src/downloader/requirements.txt /tmp/requirements.txt
11
RUN pip install --no-cache-dir -r /tmp/requirements.txt
12
13
-ENV MPLCONFIGDIR=/app/.cache/matplotlib
+ENV XDG_CACHE_HOME=/tmp/.cache
14
+ENV MPLCONFIGDIR=/tmp/.cache/matplotlib
15
16
# Code and configs are mounted at runtime via docker-compose volumes:
17
# - ./src/downloader -> /app
src/simulator/__init__.py
@@ -1 +1 @@
1
-from .diffraction_generator import DiffractionGenerator
+__all__ = ["diffraction_generator", "simulation_worker"]
0 commit comments