10 lines
203 B
Plaintext
10 lines
203 B
Plaintext
|
ARG IMAGENAME
|
||
|
|
||
|
FROM ${IMAGENAME}
|
||
|
|
||
|
COPY ./app/* /app/
|
||
|
|
||
|
RUN apk update && apk add --no-cache --virtual .build-deps curl bash git \
|
||
|
&& bash /app/init.sh \
|
||
|
&& rm -rf /app \
|
||
|
&& apk del .build-deps
|