mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +01:00
25 lines
690 B
Docker
25 lines
690 B
Docker
FROM nikolaik/python-nodejs:python3.7-nodejs12
|
|
|
|
ENV PATH "/root/.local/bin:$PATH"
|
|
ENV NODE_PATH="/usr/lib/node_modules"
|
|
|
|
|
|
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
|
|
RUN apt-get update \
|
|
&& apt-get install -y libjpeg-progs optipng \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /code/homepage
|
|
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
|