-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.Dockerfile
68 lines (49 loc) · 2.04 KB
/
server.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Base image Ubuntu
FROM ubuntu:24.04
#####################################################################
# Install common packages
#####################################################################
# Update the package repository
RUN apt-get update
# Install basic dependencies
RUN apt-get install -y build-essential
##################################################
# Set root password | User: root, Password: (empty, no need to type anything)
##################################################
# Uncomment the following line to set the `root` password
# RUN echo 'root:root' | chpasswd
# Remove the password for the `root` account
RUN passwd -d root
##################################################
# SSH server and settings
##################################################
# Install SSH server and other required packages
RUN apt-get install -y openssh-server iproute2
# Create a directory for the SSH daemon
RUN mkdir /var/run/sshd
# Allow root login via SSH with password
RUN sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config
RUN sed -i 's/#PasswordAuthentication yes/PasswordAuthentication yes/' /etc/ssh/sshd_config
RUN sed -i 's/#PubkeyAuthentication yes/PubkeyAuthentication yes/' /etc/ssh/sshd_config
RUN sed -i 's/#PermitEmptyPasswords no/PermitEmptyPasswords yes/' /etc/ssh/sshd_config
##################################################
# Install Ruby, Gems, Rack, and Puma
##################################################
# Install basic dependencies
RUN apt-get install -y libssl-dev zlib1g-dev
# Install ruby
RUN apt-get install -y ruby ruby-dev
# Install rack gem
RUN gem install rack
# Install puma gem
RUN gem install puma
#####################################################################
# Install Git for Capistrano
#####################################################################
# Install Git
RUN apt-get install -y git
##################################################
# Common settings
##################################################
# Start the SSH daemon
CMD ["/usr/sbin/sshd", "-D"]