mirror of
https://github.com/mykitserver/docker-limesurvey.git
synced 2025-12-07 00:48:53 +01:00
11 lines
268 B
Docker
11 lines
268 B
Docker
FROM nginx
|
|
RUN apt-get update && \
|
|
apt-get install -y certbot curl python-certbot-nginx && \
|
|
apt-get -y autoclean; apt-get -y autoremove; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod 700 /entrypoint.sh
|
|
|
|
CMD ["/entrypoint.sh"]
|