ka1kuk commited on
Commit
299ad43
1 Parent(s): cd1dd26

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +16 -13
Dockerfile CHANGED
@@ -1,18 +1,21 @@
1
- # Use the official Node.js 14 image.
2
- FROM node:14
3
 
4
- # Create and change to the app directory.
5
- WORKDIR /usr/src/app
6
 
7
- # Copy application dependency manifests to the container image.
8
- COPY package.json ./
9
- COPY package-lock.json ./
10
 
11
- # Install production dependencies.
12
- RUN npm install
13
 
14
- # Copy local code to the container image.
15
- COPY . ./
16
 
17
- # Run the web service on container startup.
18
- CMD [ "node", "server" ]
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
 
2
 
3
+ WORKDIR /code
 
4
 
5
+ COPY ./requirements.txt /code/requirements.txt
 
 
6
 
7
+ COPY . .
 
8
 
9
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
 
10
 
11
+ RUN useradd -m -u 1000 user
12
+ USER user
13
+
14
+ ENV HOME=/home/user \
15
+ PATH=/home/user/.local/bin:$PATH
16
+
17
+ WORKDIR $HOME/app
18
+
19
+ COPY --chown=user . $HOME/app
20
+
21
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]