blob: 26e962fdf7fcfa984253a5ee06ec345fa127903f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
FROM node:22.9.0-bookworm-slim
# Install app dependencies
COPY package.json .
COPY package-lock.json .
RUN npm install
# Bundle APP files
COPY public/server.js .
ENV NODE_ENV=production
ENV NPM_CONFIG_LOGLEVEL=warn
ENV DEBUG=http
# Expose the listening port of your app
EXPOSE 8081
CMD [ "node", "server.js" ]
|