ykl45 commited on
Commit
999068d
1 Parent(s): 925ca55

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +34 -0
Dockerfile ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:18
2
+
3
+ # install git
4
+ RUN apt update
5
+ RUN apt install git
6
+
7
+
8
+ ARG DEBIAN_FRONTEND=noninteractive
9
+
10
+ ENV BING_HEADER ""
11
+
12
+ # Set home to the user's home directory
13
+ ENV HOME=/home/user \
14
+ PATH=/home/user/.local/bin:$PATH
15
+
16
+ # Set up a new user named "user" with user ID 1000
17
+ RUN useradd -o -u 1000 user && mkdir -p $HOME/app && chown -R user $HOME
18
+
19
+ # Switch to the "user" user
20
+ USER user
21
+
22
+ WORKDIR $HOME/app
23
+
24
+
25
+ RUN git clone -b feature/sydney https://github.com/renqabs/bg.git bg
26
+ RUN chown -R user $HOME/app/bg
27
+ WORKDIR $HOME/app/bg
28
+ RUN npm install
29
+ RUN npm run build
30
+
31
+ ENV PORT 7860
32
+ EXPOSE 7860
33
+
34
+ CMD npm start