File size: 627 Bytes
1a4b097
 
 
 
 
 
7b85f3f
efe09f5
2136e1f
7224f6f
efe09f5
 
1659e0c
7224f6f
 
 
 
1659e0c
7224f6f
 
 
51f5a72
7224f6f
 
a22fd6b
7224f6f
 
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
FROM ubuntu:20.04

# Install nodejs
RUN apt-get update && apt-get install -y curl
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
RUN apt-get install -y nodejs

RUN useradd -m huggingface

# Create app directory
COPY . /home/huggingface/easy-diffusion
WORKDIR /home/huggingface/easy-diffusion

# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./

RUN npm install
# If you are building your code for production
# RUN npm ci --only=production

# Bundle app source
COPY . .

EXPOSE 8080
CMD [ "node", "app.js" ]