You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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"]