mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-04 20:03:09 +02:00
34 lines
1.2 KiB
Docker
34 lines
1.2 KiB
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM node:18-alpine AS builder
|
|
WORKDIR /build
|
|
# install python etc so node-gyp works for the optional dependencies
|
|
RUN apk add --no-cache make gcc g++ python3
|
|
# install pnpm to make dependency installation faster (because it has a lockfile)
|
|
RUN npm install -g pnpm
|
|
COPY package.json pnpm-lock.yaml ./
|
|
COPY --link scripts scripts
|
|
RUN chmod +x ./scripts/start.sh
|
|
# install dependencies, CI=true to skip pre/postinstall scripts
|
|
RUN CI=true pnpm install --prod --frozen-lockfile
|
|
COPY --link . .
|
|
|
|
FROM node:18-alpine AS runner
|
|
RUN apk --no-cache add curl \
|
|
&& adduser --disabled-password --home /home/container container
|
|
USER container
|
|
ENV USER=container \
|
|
HOME=/home/container \
|
|
NODE_ENV=production \
|
|
HTTP_HOST=0.0.0.0 \
|
|
HTTP_PORT=80
|
|
WORKDIR /home/container
|
|
COPY --from=builder --chown=container:container /build ./
|
|
EXPOSE ${HTTP_PORT}/tcp
|
|
ENTRYPOINT [ "/home/container/scripts/start.sh" ]
|
|
HEALTHCHECK --interval=15s --timeout=5s --start-period=60s \
|
|
CMD curl -f http://localhost:${HTTP_PORT}/status || exit 1
|
|
LABEL org.opencontainers.image.source=https://github.com/discord-tickets/bot \
|
|
org.opencontainers.image.description="The most popular open-source ticket bot for Discord." \
|
|
org.opencontainers.image.licenses="GPL-3.0-or-later"
|