forked from mckaywrigley/chatbot-ui
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Dockerfile
40 lines (32 loc) · 904 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# ---- Base Node ----
FROM node:alpine AS base
WORKDIR /app
COPY package*.json ./
COPY *env ./
# ---- Dependencies ----
FROM base AS dependencies
RUN npm ci
# ---- Build ----
FROM dependencies AS build
COPY . .
RUN npm run build
# ---- Production ----
FROM node:alpine AS production
WORKDIR /app
COPY --from=dependencies /app/node_modules ./node_modules
COPY --from=build /app/.next ./.next
COPY --from=build /app/public ./public
COPY --from=build /app/package*.json ./
COPY --from=build /app/next.config.js ./next.config.js
COPY --from=build /app/next-i18next.config.js ./next-i18next.config.js
COPY --from=build /app/*env ./
# Create a user named "chat"
RUN adduser -D chat
# Change ownership of the app directory to the "chat" user
RUN chown -R chat:chat /app
# Switch to the "chat" user
USER chat
# Expose the port the app will run on
EXPOSE 3000
# Start the application
CMD ["npm", "start"]