Skip to content

Commit

Permalink
fix: adapt Dockerfile and .dockerignore to new build script
Browse files Browse the repository at this point in the history
  • Loading branch information
KonradHoeffner committed Mar 22, 2024
1 parent 4d9dab5 commit f54563e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.gitignore
.github
scripts
!scripts/combine
limes
dist/all.ttl
dist/hito.ttl
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM alpine as builder
RUN apk add raptor2
WORKDIR /ontology
COPY . .
RUN ./build && rm dist/all.ttl
RUN ./scripts/combine && rm dist/all.ttl

# "from scratch" causes "no command specified"
FROM busybox
Expand Down

0 comments on commit f54563e

Please sign in to comment.