This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tsg-tsg-os-buildimage/containers/proxy/Dockerfile.j2

20 lines
546 B
Django/Jinja

{% import 'dockerfile-macros.j2' as macros -%}
ARG BASE_IMAGE
FROM ${BASE_IMAGE}
RUN {{ macros.install_packages(packages) }} && \
{{ macros.clean_after_install_packages() }}
# files
COPY files/doh.conf /opt/tsg/tfe/conf/doh/
COPY files/future.conf /opt/tsg/tfe/conf/tfe/
COPY files/tsg_diagnose_ca.pem /opt/tsg/tfe/resource/tfe/
COPY files/zlog.conf /opt/tsg/tfe/conf/tfe/
# templates
COPY templates/* /templates/
# scripts
COPY --chmod=755 entrypoint.sh /usr/local/bin/
WORKDIR /opt/tsg/tfe
CMD ["/bin/bash"]