5 lines
73 B
Docker
5 lines
73 B
Docker
FROM debian:11-slim
|
|
COPY hej.sh /hej.sh
|
|
RUN chmod +x /hej.sh
|
|
CMD /hej.sh
|