All checks were successful
learn org at code.softwareshinobi.com/linux.softwareshinobi.com/pipeline/head This commit looks good
28 lines
259 B
Docker
Executable File
28 lines
259 B
Docker
Executable File
FROM ubuntu:questing
|
|
|
|
##
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
##
|
|
|
|
WORKDIR /
|
|
|
|
COPY /provision /
|
|
|
|
##
|
|
|
|
#COPY /provision/provision.bash provision.bash
|
|
|
|
RUN bash provision.bash
|
|
|
|
##
|
|
|
|
##COPY /provision/bashrc /tmp/.bashrc
|
|
|
|
##
|
|
|
|
EXPOSE 22
|
|
|
|
CMD ["/usr/sbin/sshd","-D"]
|