Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
espressomd
docker
Commits
de89a1d5
Unverified
Commit
de89a1d5
authored
Nov 02, 2020
by
Jean-Noël Grad
Browse files
Remove CUDA 9 image
parent
74bb0ce7
Changes
2
Hide whitespace changes
Inline
Side-by-side
.github/workflows/build.yml
View file @
de89a1d5
...
...
@@ -10,7 +10,7 @@ jobs:
strategy
:
matrix
:
image
:
[
'
debian'
,
'
fedora'
,
'
opensuse'
,
'
cuda'
,
'
ubuntu-18.04'
,
'
ubuntu-20.04'
,
'
ubuntu-wo-dependencies'
]
'
ubuntu-20.04'
,
'
ubuntu-wo-dependencies'
]
steps
:
-
uses
:
actions/checkout@master
-
name
:
Build and deploy
...
...
docker/Dockerfile-ubuntu-18.04
deleted
100644 → 0
View file @
74bb0ce7
FROM ubuntu:bionic
ENV DEBIAN_FRONTEND noninteractive
COPY build-and-install-scafacos.sh /tmp
COPY ubuntu-packages.txt /tmp
RUN apt-get update && xargs -a /tmp/ubuntu-packages.txt apt-get install --no-install-recommends -y \
&& apt-get install --no-install-recommends -y \
libthrust-dev \
nvidia-cuda-toolkit \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
RUN bash /tmp/build-and-install-scafacos.sh
ENV NVIDIA_VISIBLE_DEVICES all
ENV NVIDIA_DRIVER_CAPABILITIES compute,utility
RUN useradd -m espresso
USER espresso
ENV HOME="/home/espresso"
ENV PATH="${HOME}/.local/bin:${PATH}"
RUN pip3 install --user 'cmake==3.11'
WORKDIR /home/espresso
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment