mirror of
https://github.com/Lanakod-Networks/snort-docker.git
synced 2025-07-04 13:26:38 +03:00
44 lines
1.1 KiB
Docker
44 lines
1.1 KiB
Docker
FROM imbios/bun-node:20-slim AS deps
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
# I use Asia/Jakarta as my timezone, you can change it to your timezone
|
|
RUN apt-get -y update && \
|
|
apt-get install -yq openssl git ca-certificates tzdata && \
|
|
ln -fs /usr/share/zoneinfo/Asia/Jakarta /etc/localtime && \
|
|
dpkg-reconfigure -f noninteractive tzdata
|
|
WORKDIR /app
|
|
|
|
# Install dependencies based on the preferred package manager
|
|
COPY package.json bun.lockb ./
|
|
RUN bun install --frozen-lockfile
|
|
|
|
# Build the app
|
|
FROM deps AS builder
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN bun run build
|
|
|
|
|
|
# Production image, copy all the files and run next
|
|
FROM node:20-slim AS runner
|
|
WORKDIR /app
|
|
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
|
|
ARG CONFIG_FILE
|
|
COPY $CONFIG_FILE /app/.env
|
|
ENV NODE_ENV production
|
|
ENV NEXT_SHARP_PATH /app/node_modules/sharp
|
|
# Uncomment the following line in case you want to disable telemetry during runtime.
|
|
ENV NEXT_TELEMETRY_DISABLED 1
|
|
|
|
COPY --from=builder /app/public ./public
|
|
COPY --from=builder /app/.next/standalone ./
|
|
COPY --from=builder /app/.next/static ./.next/static
|
|
|
|
EXPOSE 3000
|
|
|
|
ENV PORT 3000
|
|
|
|
CMD ["node", "server.js"] |