Skip to content
Snippets Groups Projects
Commit 9dd3bb36 authored by Anna Wellmann's avatar Anna Wellmann
Browse files

Merge branch 'developAnna' into 'develop'

Add timezone to devcontainer

See merge request irmb/VirtualFluids_dev!224
parents 7a04f613 7e413955
No related branches found
No related tags found
1 merge request!224Add timezone to devcontainer
......@@ -10,6 +10,7 @@
"notskm.clang-tidy",
"streetsidesoftware.code-spell-checker"
],
"containerEnv": {"TZ": "${localEnv:TZ:Europe/Berlin}"},
"runArgs": ["--gpus","all", // remove this line in case you have no gpus available
"--hostname=${localEnv:HOSTNAME}"], // HOSTNAME needs to be known by the vscode environment. It is probably necessary to add "export HOSTNAME=<hostname>" to the config file of your host machine's bash.
......
......@@ -18,6 +18,10 @@
FROM nvidia/cuda:11.3.1-devel-ubuntu20.04
# timezone
ARG TZ
ENV TZ="$TZ"
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment