Maciej Główka 90274ec48f BAEL-5496: passing env variables in dockerfile (#12355)
* BAEL-5496: passing env variables in dockerfile

* removed echo
2022-07-04 19:11:40 +01:00

10 lines
119 B
Docker

FROM alpine:latest
ARG name
ENV env_name $name
COPY greetings.sh .
RUN chmod +x /greetings.sh
CMD ["/greetings.sh"]