8 lines
163 B
Docker
8 lines
163 B
Docker
FROM stefanprodan/alpine-base:latest
|
|
|
|
RUN apk --no-cache add git
|
|
|
|
COPY src/entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|