Skip to content

Commit

Permalink
bash: Use the standard build/run protocol (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
beevee committed Jul 6, 2020
1 parent 7b73faf commit bc1294d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions dockerfiles/bash/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM icfpcontest2020/bash:latest
FROM icfpcontest2020/bash

WORKDIR /build
COPY /app .
ENTRYPOINT ["bash", "./run"]
WORKDIR /solution
COPY . .
RUN ./build.sh
ENTRYPOINT ["./run.sh"]

0 comments on commit bc1294d

Please sign in to comment.