9 lines
193 B
Docker
9 lines
193 B
Docker
FROM ubuntu:20.04
|
|
WORKDIR /
|
|
LABEL key="CyberSecurity_project"
|
|
RUN echo "CyberSecurity_project"
|
|
RUN apt update
|
|
COPY test.sh /test.sh
|
|
RUN chmod +x /test.sh
|
|
ENTRYPOINT ["tail", "-f", "/dev/null"]
|