garbage/Dockerfile
Renovate Bot 6fdec47667
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
chore(deps): update nginx docker tag to v1.26.0
2024-04-24 03:00:37 +00:00

18 lines
473 B
Docker

# renovate: datasource=docker depName=nginx
ARG NGINX_VERSION=1.26.0
FROM node:lts-alpine as css
WORKDIR /garbage
RUN npm install -g sass
COPY sass sass
RUN mkdir -p output/stylesheets
RUN sass sass:output/stylesheets
FROM nginx:$NGINX_VERSION-alpine
COPY output/the-library-genesis-api.html /usr/share/nginx/html/
COPY --from=css /garbage/output/stylesheets /usr/share/nginx/html/stylesheets
COPY index.html /usr/share/nginx/html/
COPY gifs /usr/share/nginx/html/gifs