File size: 831 Bytes
014ba0a
 
 
9ea5a36
 
 
014ba0a
 
 
 
 
 
 
 
 
 
 
 
ced5922
 
1788a23
014ba0a
141259e
1788a23
 
18652c3
212cb3a
 
 
014ba0a
9ea5a36
47f697b
9ea5a36
014ba0a
1788a23
014ba0a
 
3240035
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
# Use the official Node.js v18 image as the base image
FROM node:18

# install python3 and pip
RUN apt-get update && apt-get install -y python3 python3-pip

# Set the working directory inside the container
WORKDIR /app

# Copy package.json and package-lock.json to the working directory
COPY package*.json ./

# Install dependencies
RUN npm install

# Copy the entire application code to the working directory
COPY . .

# remove .env file if it exists
RUN rm -f -- .env

# Build the TypeScript code
#RUN npm run build

# Set the PORT environment variable
ENV PORT=7860
ARG JWT_SECRET
ARG JWT_EXPIRES_IN
ARG DB_URI

# install python dependencies
RUN pip3 install -r requirements.txt --break-system-packages

# Expose the port on which your application will run
EXPOSE $PORT

# Command to run the application
CMD ["./run-script.sh"]