File size: 1,011 Bytes
033cd7a
8c3b567
 
 
18c2ccd
8c3b567
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b3bce7e
 
8c3b567
 
fbc555a
 
caf9ce7
fbc555a
 
c222ce3
fbc555a
 
 
 
c222ce3
fbc555a
c222ce3
fbc555a
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
FROM nikolaik/python-nodejs:python3.9-nodejs18

USER root

RUN apt-get -y update && apt-get -y install nginx xvfb openssh-server

RUN mkdir -p /var/cache/nginx \
             /var/log/nginx \
             /var/lib/nginx
RUN touch /var/run/nginx.pid

RUN chown -R pn:pn /var/cache/nginx \
                       /var/log/nginx \
                       /var/lib/nginx \
                       /var/run/nginx.pid

USER pn
ENV HOME=/home/pn \
    PATH=/home/pn/.local/bin:$PATH

RUN mkdir $HOME/app

WORKDIR $HOME/app

RUN npm install --save express ws

COPY --chown=pn nginx.conf /etc/nginx/sites-available/default

# Create the .ssh directory if it does not exist
RUN mkdir -p /home/pn/.ssh

# Generate SSH key pair non-interactively
RUN ssh-keygen -t rsa -b 4096 -f /home/pn/.ssh/id_rsa -N ""

# Optionally, set permissions for the .ssh directory and keys
RUN chmod 700 /home/pn/.ssh && \
    chmod 600 /home/pn/.ssh/id_rsa && \
    chmod 644 /home/pn/.ssh/id_rsa.pub

COPY --chown=pn . .

CMD ["bash", "run.sh"]