2019-08-06 14:02:11 -07:00
|
|
|
FROM alpine:3.10
|
|
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
COPY . /app
|
|
|
|
|
|
|
|
|
|
RUN apk add --no-cache curl bash git
|
|
|
|
|
|
2019-08-06 14:09:54 -07:00
|
|
|
RUN chmod +x /app/entrypoint.sh
|
2019-08-06 14:02:11 -07:00
|
|
|
|
2019-08-06 14:09:54 -07:00
|
|
|
ENTRYPOINT [ "/app/entrypoint.sh" ]
|