Update Dockerfile (test10)

This commit is contained in:
OnceUponATimeInAmerica 2024-08-27 07:34:55 +03:30 committed by GitHub
parent 0575a4f946
commit e792b7b2f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -64,35 +64,14 @@ RUN apk add --no-cache --update \
ssh-keygen -A && \
echo "root:rootpassword" | chpasswd
# Set up root password (for example purposes, you may want to use a more secure method in production)
# Set the default shell (during container creation) to bash
# SHELL ["/bin/bash", "-c"]
SHELL ["/bin/bash", "-c"]
# Creates SSH authorized_keys file, and generate SSH host keys
# mkdir -p /root/.ssh && \
# touch /root/.ssh/authorized_keys && \
# Copy and configure the sshd_config file
RUN echo "Port 12297\n\
Protocol 2\n\
HostKey /etc/ssh/ssh_host_rsa_key\n\
HostKey /etc/ssh/ssh_host_ecdsa_key\n\
HostKey /etc/ssh/ssh_host_ed25519_key\n\
LogLevel quiet\n\
AllowAgentForwarding yes\n\
AllowTcpForwarding yes\n\
X11Forwarding no\n\
LoginGraceTime 120\n\
PermitRootLogin yes\n\
StrictModes no\n\
PubkeyAuthentication yes\n\
IgnoreRhosts yes\n\
HostbasedAuthentication no\n\
ChallengeResponseAuthentication no\n" > /etc/ssh/sshd_config
# Expose/announce the SSH port
EXPOSE 12297
# # Configure SSH server
# RUN mkdir /var/run/sshd && \
# echo 'root:rootpassword' | chpasswd && \
@ -105,8 +84,10 @@ COPY --from=builder /app/build/ /app/
COPY --from=builder /app/DockerEntrypoint.sh /app/
COPY --from=builder /app/x-ui.sh /usr/bin/x-ui
# Copy custom nginx configuration file to the http.d directory
# Copy custom configuration files to the container's directories
COPY ./nginx_http.conf /etc/nginx/http.d/default.conf
COPY ./sshd_config /etc/ssh/sshd_config
# Configure fail2ban
RUN rm -f /etc/fail2ban/jail.d/alpine-ssh.conf \
@ -120,6 +101,9 @@ RUN chmod +x \
/app/x-ui \
/usr/bin/x-ui
VOLUME [ "/etc/x-ui" ]
# Expose/announce the SSH port
EXPOSE 12297
VOLUME [ "/etc/x-ui", "/root/" ]
CMD [ "./x-ui" ]
ENTRYPOINT [ "/app/DockerEntrypoint.sh" ]