Frederik Ring
895d34cd43
All checks were successful
Build / build (push) Successful in 2m19s
Reviewed-on: #19
22 lines
577 B
Docker
22 lines
577 B
Docker
FROM nikolaik/python-nodejs:python3.10-nodejs20
|
|
|
|
ENV PATH "/root/.local/bin:$PATH"
|
|
ENV NODE_PATH "/usr/lib/node_modules:/usr/local/lib/node_modules"
|
|
|
|
RUN npm install -g postcss-cli@^6.1.3 autoprefixer@^9.7.0 svgo@^1.3.0 cssnano@^4.1.10 \
|
|
&& apt-get update \
|
|
&& apt-get install -y libjpeg-progs optipng \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /code/website
|
|
COPY ./website/requirements.txt /code/website/requirements.txt
|
|
RUN pip install --user -r requirements.txt
|
|
|
|
COPY ./website /code/website
|
|
COPY ./build /code/build
|
|
|
|
ARG siteurl
|
|
ENV SITEURL=$siteurl
|
|
|
|
RUN make publish
|