mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
Fixes https://github.com/certbot/certbot/issues/8387. * update _venv_common.py * delete venv.py scripts * rename venv script * update relevant venv3 references * remove set_python_envvars
21 lines
552 B
Plaintext
21 lines
552 B
Plaintext
# This Dockerfile builds an image for development.
|
|
FROM debian:buster
|
|
|
|
# Note: this only exposes the port to other docker containers.
|
|
EXPOSE 80 443
|
|
|
|
WORKDIR /opt/certbot/src
|
|
|
|
COPY . .
|
|
RUN apt-get update && \
|
|
apt-get install apache2 git python3-dev python3-venv gcc libaugeas0 \
|
|
libssl-dev libffi-dev ca-certificates openssl nginx-light -y && \
|
|
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
|