Skip to content

Commit

Permalink
ci: run script
Browse files Browse the repository at this point in the history
  • Loading branch information
fiskrt committed Jun 28, 2024
1 parent 73b6632 commit 9bfc2ee
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: docker build -t my-image:latest .

- name: Run Docker container
run: docker run my-image:latest
run: docker run -e API_KEY="test" my-image:latest

# defaults:
# run:
Expand Down
10 changes: 9 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,20 @@ RUN apt-get update && \
apt-get install -y git ca-certificates && \
apt-get clean
# Clone this repository
RUN git clone https://github.com/GT4SD/molecular-design.git
RUN git clone --branch add-docker https://github.com/GT4SD/molecular-design.git

WORKDIR /workspace/molecular-design

RUN echo $API_KEY
RUN ls

# We need to use the pypi toxsmi package, not the default one
RUN pip uninstall --yes toxsmi && pip install toxsmi && mkdir data

RUN chmod +x example_pipeline.sh
RUN ./example_pipeline.sh




CMD ["bash"]

0 comments on commit 9bfc2ee

Please sign in to comment.