aboutsummaryrefslogtreecommitdiff
path: root/services/docker/nginx/Dockerfile
blob: 67d41d1a3f5204edc5872faf5dd1dbe5a0f2df6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM node:lts AS build-www
RUN npm install -g pnpm
COPY sites/www /sites/www
WORKDIR /sites/www
RUN pnpm install --frozen-lockfile && pnpm run build

FROM nginx:mainline
COPY --from=build-www /sites/www/dist /srv/www
ADD sites/www/favicon.ico /srv/www/favicon.ico
RUN apt update && apt-get install -y tini certbot && rm -rf /var/lib/apt/lists/*
ADD --chmod=755 certbot.bash nginx-wrapper.bash /app/
CMD ["/usr/bin/tini", "--", "/app/nginx-wrapper.bash"]