mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-05 06:37:10 -04:00
feat: Docker build from behind a proxy
This commit is contained in:
parent
c2c37c58ee
commit
f0fd76ceeb
1 changed files with 9 additions and 0 deletions
|
@ -7,6 +7,15 @@
|
||||||
FROM node:alpine as build
|
FROM node:alpine as build
|
||||||
LABEL maintainer="Etherpad team, https://github.com/ether/etherpad-lite"
|
LABEL maintainer="Etherpad team, https://github.com/ether/etherpad-lite"
|
||||||
|
|
||||||
|
# Set these arguments when building the image from behind a proxy
|
||||||
|
ARG http_proxy=
|
||||||
|
ARG https_proxy=
|
||||||
|
ARG no_proxy=
|
||||||
|
|
||||||
|
ENV http_proxy=${http_proxy}
|
||||||
|
ENV https_proxy=${https_proxy}
|
||||||
|
ENV no_proxy=${no_proxy}
|
||||||
|
|
||||||
ARG TIMEZONE=
|
ARG TIMEZONE=
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue