12 lines
190 B
Docker
12 lines
190 B
Docker
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"] |