7 lines
206 B
Docker
7 lines
206 B
Docker
FROM nginx
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY templates/ /templates/
|
|
COPY scripts/01-configure_ssh.sh /docker-entrypoint.d/01-configure_ssh.sh
|
|
|
|
RUN chmod +x /docker-entrypoint.d/01-configure_ssh.sh
|