Skip to content

Commit

Permalink
Fix docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCreosote committed Apr 29, 2024
1 parent 9098b00 commit 75b730b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
# Set up mash
wget https://github.com/marbl/Mash/releases/download/v2.0/mash-Linux64-v2.0.tar
tar -xf mash-Linux64-v2.0.tar
cd mash_Linux64-v2.0
cd mash-Linux64-v2.0
MP = `pwd`
echo "MASH_PATH=$MP" >> "$GITHUB_ENV"
cd ..
Expand Down
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
FROM kbase/kb_jre:latest as build
RUN apt-get -y update && apt-get -y install ant git openjdk-8-jdk
FROM kbase/sdkbase2 as build
RUN cd / && git clone https://github.com/kbase/jars

ADD . /src
RUN cd /src && ant build
RUN find /src


FROM kbase/kb_jre:latest

# These ARGs values are passed in via the docker build command
Expand Down

0 comments on commit 75b730b

Please sign in to comment.