convert to docker action

This commit is contained in:
“ibrahim0814” 2019-08-06 14:02:11 -07:00
parent 8b22c3537a
commit f3f8338f33
No known key found for this signature in database
GPG key ID: DBBD7CB06738E2BF
4 changed files with 22 additions and 4 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM alpine:3.10
WORKDIR /app
COPY . /app
RUN apk add --no-cache curl bash git
RUN chmod +x /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]