mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
* add some missing types * install pkg-config * install pkg-config for docker too * add pkg-config to plugins * pkg-config when cryptography may need to be built * deps cleanup * more comments * more tweaks
23 lines
688 B
Plaintext
23 lines
688 B
Plaintext
# This Dockerfile builds an image for development.
|
|
FROM ubuntu:focal
|
|
|
|
# Note: this only exposes the port to other docker containers.
|
|
EXPOSE 80 443
|
|
|
|
WORKDIR /opt/certbot/src
|
|
|
|
COPY . .
|
|
# This does not include the dependencies needed to build cryptography. See
|
|
# https://cryptography.io/en/latest/installation/#building-cryptography-on-linux
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get install apache2 git python3-venv \
|
|
libaugeas0 nginx-light -y --no-install-recommends && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/* \
|
|
/tmp/* \
|
|
/var/tmp/*
|
|
|
|
RUN VENV_NAME="../venv" python3 tools/venv.py
|
|
|
|
ENV PATH /opt/certbot/venv/bin:$PATH
|