Skip to content

Commit

Permalink
Merge pull request #189 from R-ODAF/build_container
Browse files Browse the repository at this point in the history
Confusing problem with moving files that do exist
  • Loading branch information
mattjmeier authored Jan 18, 2024
2 parents 2ea4d06 + 7ac4066 commit e57b9c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:
contents: read

jobs:
build:
tests:
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
strategy:
Expand Down
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ WORKDIR "/home/R-ODAF/R-ODAF_Health_Canada"
COPY . .
RUN chown -R R-ODAF:R-ODAF /home/R-ODAF
USER R-ODAF
RUN mv data data.bak && mv config config.bak
RUN /bin/bash -c "tree data.bak && tree config.bak && \
mv data data.bak && mv config config.bak"
# Why???
# RUN mv data data.bak && mv config config.bak

RUN git clone https://github.com/EHSRB-BSRSE-Bioinformatics/test-data \
&& mv test-data/temposeq/* ./ \
Expand Down

0 comments on commit e57b9c6

Please sign in to comment.