10 lines
255 B
Docker
10 lines
255 B
Docker
ARG REPO_LOCATION
|
|
# ARG BASE_VERSION
|
|
|
|
FROM ${REPO_LOCATION}minideb
|
|
# FROM ${REPO_LOCATION}minideb:${BASE_VERSION}
|
|
|
|
RUN install_packages tinyproxy-bin
|
|
|
|
VOLUME [ "/srv/tinyproxy.conf" ]
|
|
ENTRYPOINT [ "/usr/bin/tinyproxy", "-d", "-c", "/srv/tinyproxy.conf" ]
|