Skip to content

Commit

Permalink
update ghcr_token
Browse files Browse the repository at this point in the history
  • Loading branch information
mdupaysign committed Nov 13, 2024
1 parent aba4e39 commit 01670a3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.GHCR_TOKEN }}
#token: ${{ secrets.GHCR_TOKEN }}
# See https://github.com/marketplace/actions/setup-micromamba
- name: Install conda env
uses: mamba-org/[email protected]
Expand Down
14 changes: 8 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*

WORKDIR /lidro

COPY . .

# # Set up the Conda environment: cf https://github.com/mamba-org/micromamba-docker
COPY environment.yml /tmp/env.yaml
COPY requirements.txt /tmp/requirements.txt
# COPY environment.yml /tmp/env.yaml
# COPY requirements.txt /tmp/requirements.txt
RUN chown $MAMBA_USER:$MAMBA_USER /tmp/env.yaml
RUN micromamba install -y -n base -f /tmp/env.yaml && \
micromamba clean --all --yes
Expand All @@ -28,11 +30,11 @@ RUN git submodule sync && \
git submodule update --init --recursive

# Create directories
RUN mkdir data tmp
RUN mkdir tmp

# Copy the application files
COPY lidro lidro
COPY configs configs
# # Copy the application files
# COPY lidro lidro
# COPY configs configs



0 comments on commit 01670a3

Please sign in to comment.