4 lines
180 B
Docker
4 lines
180 B
Docker
FROM nginx:alpine
|
|
ARG API_BASE=https://bm.nicolasfryder.ovh
|
|
COPY site/ /usr/share/nginx/html
|
|
RUN sed -i "s|https://bm.nicolasfryder.ovh|${API_BASE}|g" /usr/share/nginx/html/app.js
|