Files
containers/cert-sorter/Dockerfile
T

12 lines
190 B
Docker
Raw Normal View History

2025-01-12 00:04:19 -05:00
FROM ubuntu:24.04
RUN mkdir -p /app /etc/letsencrypt /dest/1000
COPY copy.sh /app/copy.sh
RUN chmod +x /app/copy.sh
VOLUME /etc/letsencrypt
VOLUME /dest/1000
ENTRYPOINT ["/app/copy.sh"]