Skip to content

Commit

Permalink
Dockerfile- dont bust layer cache and put app COPY at bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
nektro committed Jul 26, 2022
1 parent 75e7015 commit cecdf7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM alpine
WORKDIR /app
COPY ./bin/aquila-linux-x86_64 /app/aquila
RUN apk add git
RUN apk add wget tar unzip
RUN apk add mercurial
VOLUME /data
COPY ./bin/aquila-linux-x86_64 /app/aquila
ENTRYPOINT ["/app/aquila", "--port", "8000", "--db", "/data/access.db"]

0 comments on commit cecdf7b

Please sign in to comment.