Skip to content

Commit

Permalink
bugfix remote from https and not from ssh 🎮
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas.gehrig committed Nov 7, 2023
1 parent f48017e commit 2f5fdf6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docker/user/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ RUN apt-get update && apt-get install -y git && \
mkdir Karabo-Pipeline && \
cd Karabo-Pipeline && \
git init && \
git remote add origin git@github.com:i4Ds/Karabo-Pipeline.git && \
git remote add origin https://github.com/i4Ds/Karabo-Pipeline.git && \
git fetch origin ${GIT_REV} && \
git reset --hard ${GIT_REV}

FROM nvidia/cuda:11.7.1-cudnn8-devel-ubuntu22.04
# build: user|test, GIT_REV: in case of "user", ONLY `v{major}.{minor}.{patch}`
ARG GIT_REV \
BUILD=user
ARG BUILD=user
RUN apt-get update && apt-get install -y git gcc gfortran libarchive13 wget curl nano
ENV PATH="/opt/conda/bin:${PATH}" CONDA_PREFIX="/opt/conda" IS_DOCKER_CONTAINER="true"
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-py39_23.5.0-3-Linux-x86_64.sh -O ~/miniconda.sh && \
Expand Down

0 comments on commit 2f5fdf6

Please sign in to comment.