Skip to content

Commit

Permalink
Disable GPU
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Nov 13, 2023
1 parent 5ea81de commit 582aa38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
FROM docker.io/tensorflow/tensorflow:2.11.0

# forcefully disable GPU, might solve some problems with weird container runtimes
ENV CUDA_VISIBLE_DEVICES=-1

COPY requirements.txt /app/requirements.txt
RUN --mount=type=cache,target=/root/.cache,sharing=private pip install -r /app/requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion emerald/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1.0'
__version__ = '0.1.1'

DISPLAY_TITLE = r"""
_ _ _
Expand Down

0 comments on commit 582aa38

Please sign in to comment.