Skip to content

Commit

Permalink
feat: add Dockerfile support for docker image push
Browse files Browse the repository at this point in the history
  • Loading branch information
dalisoft committed Apr 27, 2024
1 parent 27f406d commit 9220567
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM alpine:latest

RUN apk add --no-cache bash git
RUN mkdir -p /repository

VOLUME [ "/repository" ]
WORKDIR /repository

ADD release.sh presets plugins /repository/
RUN chmod +x /repository/release.sh

ENTRYPOINT [ "/repository/release.sh" ]
CMD [ "--help" ]

0 comments on commit 9220567

Please sign in to comment.