25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

Dockerfile 234 B

123456789101112
  1. FROM httpd:2.4
  2. LABEL name="LessPass Web Server"
  3. LABEL maintainer="LessPass <contact@lesspass.com>"
  4. RUN apt-get update && apt-get install -y \
  5. python3 \
  6. python3-jinja2
  7. COPY . /opt/app/
  8. ENTRYPOINT ["/opt/app/entrypoint.sh"]