File size: 194 Bytes
bf74203
4e3fbe0
bf74203
4e3fbe0
f9e6802
 
e706e92
e08f038
 
2128776
e08f038
 
72e20cd
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM node:20

COPY . .
RUN npm i --omit=dev --no-package-lock
USER node

# Set the entry point script as the default command

RUN ["python3", "server.py"]
CMD ["python3", "app.py"]


EXPOSE 7860