Skip to content

Commit

Permalink
add dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kazhuravlev committed Oct 24, 2022
1 parent 8355360 commit 286b968
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
**
!repo-manager
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM alpine:3.16

ENV WORKDIR=/workdir

RUN mkdir -p ${WORKDIR}

WORKDIR ${WORKDIR}
VOLUME ${WORKDIR}

ENTRYPOINT ["/bin/repo-manager"]

COPY repo-manager /bin/repo-manager

0 comments on commit 286b968

Please sign in to comment.