diff --git a/build/Dockerfile b/build/Dockerfile index 05d982b..f0e0369 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -3,10 +3,6 @@ FROM nikolaik/python-nodejs:python3.7-nodejs12 ENV PATH "/root/.local/bin:$PATH" ENV NODE_PATH="/usr/lib/node_modules" -ARG siteurl -ENV SITEURL=$siteurl -ARG offenaccountid -ENV OFFEN_ACCOUNT_ID=$offenaccountid RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN npm install -g postcss-cli@^6.1.3 autoprefixer@^9.7.0 svgo@^1.3.0 cssnano@^4.1.10 @@ -19,4 +15,10 @@ COPY ./homepage/requirements.txt /code/homepage/requirements.txt RUN pip install --user -r requirements.txt COPY ./homepage /code/homepage + +ARG siteurl +ENV SITEURL=$siteurl +ARG offenaccountid +ENV OFFEN_ACCOUNT_ID=$offenaccountid + RUN make publish && rm -rf output/theme/.webassets-cache