pvanand commited on
Commit
e8e5856
·
verified ·
1 Parent(s): 87babf7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -24
Dockerfile CHANGED
@@ -1,37 +1,27 @@
1
- # Dockerfile
2
- FROM node:16
3
-
4
- # Install latest chrome dev package and fonts to support major charsets
5
- RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
6
- && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
7
- && apt-get update \
8
- && apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 \
9
- --no-install-recommends \
10
- && rm -rf /var/lib/apt/lists/*
11
 
 
12
  WORKDIR /usr/src/app
13
 
14
- # Add user so we don't need --no-sandbox.
15
- RUN groupadd -r pptruser && useradd -r -g pptruser -G audio,video pptruser \
16
- && mkdir -p /home/pptruser/Downloads \
17
- && chown -R pptruser:pptruser /home/pptruser
18
-
19
  # Install app dependencies
 
20
  COPY package*.json ./
 
 
21
  RUN npm install
22
 
23
  # Bundle app source
24
  COPY . .
25
 
26
- # Set correct permissions
27
- RUN chown -R pptruser:pptruser /usr/src/app
28
-
29
- # Create a directory for temporary files with correct permissions
30
- RUN mkdir -p /tmp/marp-work && chown -R pptruser:pptruser /tmp/marp-work && chmod -R 777 /tmp/marp-work
31
 
32
- # Run everything after as non-privileged user.
33
- USER pptruser
34
 
35
- EXPOSE 7860
 
36
 
37
- CMD ["node", "index.js"]
 
 
1
+ # Use Node.js LTS (Long Term Support) version
2
+ FROM node:20-slim
 
 
 
 
 
 
 
 
3
 
4
+ # Create app directory
5
  WORKDIR /usr/src/app
6
 
 
 
 
 
 
7
  # Install app dependencies
8
+ # A wildcard is used to ensure both package.json AND package-lock.json are copied
9
  COPY package*.json ./
10
+
11
+ # Install dependencies
12
  RUN npm install
13
 
14
  # Bundle app source
15
  COPY . .
16
 
17
+ # Create a directory for uploaded files if needed
18
+ #RUN mkdir -p public
 
 
 
19
 
20
+ # Your app binds to port 3000 so you'll use the EXPOSE instruction to have it mapped by the docker daemon
21
+ EXPOSE 3000
22
 
23
+ # Define environment variable
24
+ ENV PORT=3000
25
 
26
+ # Command to run the application
27
+ CMD [ "node", "index.js" ]